about summary refs log tree commit diff stats
path: root/test_apps
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-04-10 15:28:10 -0700
committerKartik Agaram <vc@akkartik.com>2020-05-18 00:44:46 -0700
commit99c3cfddffb3175e5938eb5ef661d0d71eedff97 (patch)
treec975841b584e404cc750749474e50c9be19e984e /test_apps
parent454691bbc1593da466b364fa39e24dd963d44792 (diff)
downloadmu-99c3cfddffb3175e5938eb5ef661d0d71eedff97.tar.gz
core translator phases now emit identical binaries
Diffstat (limited to 'test_apps')
-rwxr-xr-xtest_apps4
1 files changed, 2 insertions, 2 deletions
diff --git a/test_apps b/test_apps
index a19bad7c..e6276cb7 100755
--- a/test_apps
+++ b/test_apps
@@ -304,7 +304,7 @@ echo "== translating using SubX (native only)"
 for n in `seq 1 12`
 do
   echo ex$n
-  ./translate_subx_debug init.$OS apps/ex$n.subx
+  ./translate_subx init.$OS apps/ex$n.subx
   diff apps/ex$n a.elf
 done
 
@@ -313,7 +313,7 @@ done
 for app in factorial crenshaw2-1 crenshaw2-1b
 do
   echo $app
-  ./translate_subx_debug init.$OS 0[0-8]*.subx apps/$app.subx
+  ./translate_subx init.$OS 0[0-8]*.subx apps/$app.subx
   diff apps/$app a.elf
 done