root/trunk/orca/tests/run_test

Revision 82, 305 bytes (checked in by krobillard, 3 years ago)

find/skip now works on blocks.

  • Property svn:executable set to *
Line 
1#!/bin/sh
2
3INTERPRETER=../orca
4#REBOL=rebol
5#REBOL=./rebol
6REBOL=./rebol_view_1.2.47
7
8#DIFF='diff -w --ignore-blank-lines'
9#DIFF='diff -w'
10DIFF=diff
11
12for FILE in $*
13do
14        echo Test: $FILE
15        ROUT=${FILE%.*}.outr
16        OUT=${FILE%.*}.out
17        $REBOL -qs $FILE >$ROUT
18        $INTERPRETER $FILE >$OUT
19        ${DIFF} $OUT $ROUT
20done
Note: See TracBrowser for help on using the browser.