diff options
Diffstat (limited to 'subx/test_apps')
-rwxr-xr-x | subx/test_apps | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/subx/test_apps b/subx/test_apps index 363969a5..6481fe20 100755 --- a/subx/test_apps +++ b/subx/test_apps @@ -129,7 +129,7 @@ echo ex12 test `uname` = 'Linux' && examples/ex12 echo handle -./subx translate *.subx apps/handle.subx -o apps/handle +./subx translate 0*.subx apps/handle.subx -o apps/handle [ "$1" != record ] && git diff --quiet apps/handle ./subx run apps/handle 2>&1 |grep -q 'lookup failed' test `uname` = 'Linux' && { @@ -137,7 +137,7 @@ test `uname` = 'Linux' && { } echo factorial -./subx translate *.subx apps/factorial.subx -o apps/factorial +./subx translate 0*.subx apps/factorial.subx -o apps/factorial [ "$1" != record ] && git diff --quiet apps/factorial ./subx run apps/factorial || ret=$? test $ret -eq 120 # factorial(5) @@ -151,7 +151,7 @@ test `uname` = 'Linux' && { } echo crenshaw2-1 -./subx translate *.subx apps/crenshaw2-1.subx -o apps/crenshaw2-1 +./subx translate 0*.subx apps/crenshaw2-1.subx -o apps/crenshaw2-1 [ "$1" != record ] && git diff --quiet apps/crenshaw2-1 ./subx run apps/crenshaw2-1 test echo @@ -161,7 +161,7 @@ test `uname` = 'Linux' && { } echo crenshaw2-1b -./subx translate *.subx apps/crenshaw2-1b.subx -o apps/crenshaw2-1b +./subx translate 0*.subx apps/crenshaw2-1b.subx -o apps/crenshaw2-1b [ "$1" != record ] && git diff --quiet apps/crenshaw2-1b ./subx run apps/crenshaw2-1b test echo @@ -171,7 +171,7 @@ test `uname` = 'Linux' && { } echo hex -./subx translate *.subx apps/hex.subx -o apps/hex +./subx translate 0*.subx apps/hex.subx -o apps/hex [ "$1" != record ] && git diff --quiet apps/hex ./subx run apps/hex test echo @@ -181,7 +181,7 @@ test `uname` = 'Linux' && { } echo pack -./subx translate *.subx apps/pack.subx -o apps/pack +./subx translate 0*.subx apps/subx-common.subx apps/pack.subx -o apps/pack [ "$1" != record ] && git diff --quiet apps/pack ./subx run apps/pack test echo @@ -191,7 +191,7 @@ test `uname` = 'Linux' && { } echo assort -./subx translate *.subx apps/assort.subx -o apps/assort +./subx translate 0*.subx apps/subx-common.subx apps/assort.subx -o apps/assort [ "$1" != record ] && git diff --quiet apps/assort ./subx run apps/assort test echo |