diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-07-05 15:28:37 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-07-06 01:05:10 -0700 |
commit | 9a524793ee01ce47f3963768559a0d6c348631c5 (patch) | |
tree | aa1045424609f1a14a7a8e5bfaa1517101acd894 /test_apps | |
parent | 3ccb2c83280e22ad5b7f7c47d7bd95748b969521 (diff) | |
download | mu-9a524793ee01ce47f3963768559a0d6c348631c5.tar.gz |
6618 - new docs
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 && { |