diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-04-03 00:19:31 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-18 00:44:46 -0700 |
commit | ca358b17a3fc36adcfbbb565675998de2d3e3576 (patch) | |
tree | 32c1d8726f4593521e1bc67b8e2d1ae4633c2d40 /test_apps | |
parent | 546a92985f7da2491077d641a2c118b4af7f6913 (diff) | |
download | mu-ca358b17a3fc36adcfbbb565675998de2d3e3576.tar.gz |
table primitives working
$ ./translate_subx init.linux 0*.subx && ./a.elf test
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/test_apps b/test_apps index 83073191..06b658b3 100755 --- a/test_apps +++ b/test_apps @@ -221,20 +221,6 @@ test $NATIVE && { echo } -echo handle -./bootstrap translate init.$OS 0[0-8]*.subx apps/handle.subx -o apps/handle -test "$1" = 'record' || git diff --exit-code apps/handle -test $EMULATED && { - ./bootstrap run apps/handle > handle.out 2>&1 || true - grep -q 'lookup succeeded' handle.out || { echo "missing success test"; exit 1; } - grep -q 'lookup failed' handle.out || { echo "missing failure test"; exit 1; } -} -test $NATIVE && { - apps/handle > handle.out 2>&1 || true - grep -q 'lookup succeeded' handle.out || { echo "missing success test"; exit 1; } - grep -q 'lookup failed' handle.out || { echo "missing failure test"; exit 1; } -} - # Phases of the self-hosted SubX translator. for phase in hex survey pack assort dquotes tests @@ -324,7 +310,7 @@ done # Larger apps that use the standard library. -for app in factorial crenshaw2-1 crenshaw2-1b handle +for app in factorial crenshaw2-1 crenshaw2-1b do echo $app ./translate_subx init.$OS 0[0-8]*.subx apps/$app.subx |