diff options
author | David Robillard <d@drobilla.net> | 2010-04-08 20:09:16 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2010-04-08 20:09:16 +0000 |
commit | 55b6a3f313670d2cb13847d1f1b04fe3e4b21d63 (patch) | |
tree | 200b7dbe00107507e8111b07747bef2cd3f6a958 /test.sh | |
parent | 9d9fa6162295f3813d20f7a3ad4e07ccd6087c3c (diff) | |
download | resp-55b6a3f313670d2cb13847d1f1b04fe3e4b21d63.tar.gz resp-55b6a3f313670d2cb13847d1f1b04fe3e4b21d63.tar.bz2 resp-55b6a3f313670d2cb13847d1f1b04fe3e4b21d63.zip |
Tuplr -> Resp (RESource Processing).
git-svn-id: http://svn.drobilla.net/resp/resp@252 ad02d1e2-f140-0410-9f75-f8b11f17cedd
Diffstat (limited to 'test.sh')
-rwxr-xr-x | test.sh | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -3,7 +3,7 @@ run() { prog=$1 desired=$2 - out=`./build/tuplr $prog` + out=`./build/resp $prog` if [ "$out" != "$desired" ]; then echo "FAIL: $prog"; echo " Expected: \"$desired\""; @@ -13,9 +13,9 @@ run() { fi } -run './test/ack.tpr' '8189 : Int' -run './test/def.tpr' '3 : Int' -run './test/fac.tpr' '720 : Int' -run './test/poly.tpr' '#t : Bool' -run './test/nest.tpr' '6 : Int' -run './test/tup.tpr' '5 : Int' +run './test/ack.resp' '8189 : Int' +run './test/def.resp' '3 : Int' +run './test/fac.resp' '720 : Int' +run './test/poly.resp' '#t : Bool' +run './test/nest.resp' '6 : Int' +run './test/tup.resp' '5 : Int' |