root/trunk/orca/tests/orca_test

Revision 53, 225 bytes (checked in by krobillard, 3 years ago)

Added tests/orca.

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