diff options
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 15 |
1 files changed, 2 insertions, 13 deletions
diff --git a/test_apps b/test_apps index 325266e1..bcd61745 100755 --- a/test_apps +++ b/test_apps @@ -47,11 +47,11 @@ echo ex2 test "$1" = 'record' || git diff --exit-code apps/ex2 test $EMULATED && { ./bootstrap run apps/ex2 || ret=$? - test $ret -eq 2 # 1 + 1 + test $ret -eq 7 # 3 + 4 } test $NATIVE && { apps/ex2 || ret=$? - test $ret -eq 2 # 1 + 1 + test $ret -eq 7 # 3 + 4 } echo ex3 @@ -365,17 +365,6 @@ test $NATIVE && { test $ret -eq 7 } -echo ex2.2.mu -./translate_mu apps/ex2.2.mu -test $EMULATED && { - ./bootstrap run a.elf || ret=$? - test $ret -eq 4 -} -test $NATIVE && { - ./a.elf || ret=$? - test $ret -eq 4 -} - echo ex3.mu ./translate_mu apps/ex3.mu test $EMULATED && { |