about summary refs log tree commit diff stats
path: root/test_apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-05 15:28:37 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-06 01:05:10 -0700
commit9a524793ee01ce47f3963768559a0d6c348631c5 (patch)
treeaa1045424609f1a14a7a8e5bfaa1517101acd894 /test_apps
parent3ccb2c83280e22ad5b7f7c47d7bd95748b969521 (diff)
downloadmu-9a524793ee01ce47f3963768559a0d6c348631c5.tar.gz
6618 - new docs
Diffstat (limited to 'test_apps')
-rwxr-xr-xtest_apps15
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  &&  {