aboutsummaryrefslogtreecommitdiffstats
path: root/test.sh
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2010-04-08 20:09:16 +0000
committerDavid Robillard <d@drobilla.net>2010-04-08 20:09:16 +0000
commit55b6a3f313670d2cb13847d1f1b04fe3e4b21d63 (patch)
tree200b7dbe00107507e8111b07747bef2cd3f6a958 /test.sh
parent9d9fa6162295f3813d20f7a3ad4e07ccd6087c3c (diff)
downloadresp-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-xtest.sh14
1 files changed, 7 insertions, 7 deletions
diff --git a/test.sh b/test.sh
index d7e4043..bc54159 100755
--- a/test.sh
+++ b/test.sh
@@ -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'