diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-08-25 15:04:26 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-08-25 15:04:26 -0700 |
commit | 0d3b3ef04af50bd987979495e7e7ec3317b24b1c (patch) | |
tree | 812e679560e8c43563a8237eb996e18d81f8f69e /test_apps | |
parent | 749d455ac3c6bcad8a09d96bc613aafc2af45292 (diff) | |
parent | b60d8c920ef988e8058c1e31bd0907643b60cb5d (diff) | |
download | mu-0d3b3ef04af50bd987979495e7e7ec3317b24b1c.tar.gz |
Merge branch 'master' into desugar
Diffstat (limited to 'test_apps')
-rwxr-xr-x | test_apps | 308 |
1 files changed, 191 insertions, 117 deletions
diff --git a/test_apps b/test_apps index 8cf6d81a..91929b6d 100755 --- a/test_apps +++ b/test_apps @@ -1,14 +1,25 @@ #!/bin/sh -# Build and test (in emulated mode) all included SubX programs. -# Also compare generated binaries. -# If running on Linux, also test natively. +# Build and test all included SubX programs: +# translate them into ELF binaries +# compare the generated binaries with what's already in git +# run/test the ELF binaries in emulated mode (unless $NO_EMULATION) +# run/test the ELF binaries in native mode (if on Linux) +# +# Example usage: +# test_apps # compare generated binaries, run them in emulated and native mode +# test_apps record # run binaries in emulated and native mode +# NO_EMULATION=1 test_apps # compare generated binaries, run them in native mode +# NO_EMULATION=1 test_apps record # run binaries just in native mode set -e cd `dirname $0` -test `uname` = 'Linux' && echo 'testing native runs as well' +test $NO_EMULATION || EMULATED=1 +test $EMULATED && echo 'testing emulated runs' +test `uname` = 'Linux' && NATIVE=1 +test $NATIVE && echo 'testing native runs' -CFLAGS=$CFLAGS ./build +./build echo "== translating and running using C++" @@ -16,101 +27,121 @@ echo "== translating and running using C++" echo ex1 ./subx translate examples/ex1.subx -o examples/ex1 -[ "$1" != record ] && git diff --exit-code examples/ex1 -./subx run examples/ex1 || ret=$? -test $ret -eq 42 # life, the universe and everything -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex1 +test $EMULATED && { + ./subx run examples/ex1 || ret=$? + test $ret -eq 42 # life, the universe and everything +} +test $NATIVE && { examples/ex1 || ret=$? test $ret -eq 42 # life, the universe and everything } echo ex2 ./subx translate examples/ex2.subx -o examples/ex2 -[ "$1" != record ] && git diff --exit-code examples/ex2 -./subx run examples/ex2 || ret=$? -test $ret -eq 2 # 1 + 1 -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex2 +test $EMULATED && { + ./subx run examples/ex2 || ret=$? + test $ret -eq 2 # 1 + 1 +} +test $NATIVE && { examples/ex2 || ret=$? test $ret -eq 2 # 1 + 1 } echo ex3 ./subx translate examples/ex3.subx -o examples/ex3 -[ "$1" != record ] && git diff --exit-code examples/ex3 -./subx run examples/ex3 || ret=$? -test $ret -eq 55 # 1 + 2 + ... + 10 -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex3 +test $EMULATED && { + ./subx run examples/ex3 || ret=$? + test $ret -eq 55 # 1 + 2 + ... + 10 +} +test $NATIVE && { examples/ex3 || ret=$? test $ret -eq 55 # 1 + 2 + ... + 10 } echo ex4 ./subx translate examples/ex4.subx -o examples/ex4 -[ "$1" != record ] && git diff --exit-code examples/ex4 -echo a | ./subx run examples/ex4 >ex4.out || true -test `cat ex4.out` = 'a' -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex4 +test $EMULATED && { + echo a | ./subx run examples/ex4 >ex4.out || true + test `cat ex4.out` = 'a' +} +test $NATIVE && { echo a | examples/ex4 >ex4.out || true test `cat ex4.out` = 'a' } echo ex5 ./subx translate examples/ex5.subx -o examples/ex5 -[ "$1" != record ] && git diff --exit-code examples/ex5 -echo a | ./subx run examples/ex5 >ex5.out || true -test `cat ex5.out` = 'a' -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex5 +test $EMULATED && { + echo a | ./subx run examples/ex5 >ex5.out || true + test `cat ex5.out` = 'a' +} +test $NATIVE && { echo a | examples/ex5 >ex5.out || true test `cat ex5.out` = 'a' } echo ex6 ./subx translate examples/ex6.subx -o examples/ex6 -[ "$1" != record ] && git diff --exit-code examples/ex6 -./subx run examples/ex6 >ex6.out || true -test "`cat ex6.out`" = 'Hello, world!' -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex6 +test $EMULATED && { + ./subx run examples/ex6 >ex6.out || true + test "`cat ex6.out`" = 'Hello, world!' +} +test $NATIVE && { examples/ex6 >ex6.out || true test "`cat ex6.out`" = 'Hello, world!' } echo ex7 ./subx translate examples/ex7.subx -o examples/ex7 -[ "$1" != record ] && git diff --exit-code examples/ex7 -./subx run examples/ex7 || ret=$? -test $ret -eq 97 # 'a' -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex7 +test $EMULATED && { + ./subx run examples/ex7 || ret=$? + test $ret -eq 97 # 'a' +} +test $NATIVE && { examples/ex7 || ret=$? test $ret -eq 97 # 'a' } echo ex8 ./subx translate examples/ex8.subx -o examples/ex8 -[ "$1" != record ] && git diff --exit-code examples/ex8 -./subx run examples/ex8 abcd || ret=$? -test $ret -eq 4 # length('abcd') -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex8 +test $EMULATED && { + ./subx run examples/ex8 abcd || ret=$? + test $ret -eq 4 # length('abcd') +} +test $NATIVE && { examples/ex8 abcd || ret=$? test $ret -eq 4 # length('abcd') } echo ex9 ./subx translate examples/ex9.subx -o examples/ex9 -[ "$1" != record ] && git diff --exit-code examples/ex9 -./subx run examples/ex9 z x || ret=$? -test $ret -eq 2 # 'z' - 'x' -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex9 +test $EMULATED && { + ./subx run examples/ex9 z x || ret=$? + test $ret -eq 2 # 'z' - 'x' +} +test $NATIVE && { examples/ex9 z x || ret=$? test $ret -eq 2 # 'z' - 'x' } echo ex10 ./subx translate examples/ex10.subx -o examples/ex10 -[ "$1" != record ] && git diff --exit-code examples/ex10 -./subx run examples/ex10 abc abc || ret=$? -test $ret -eq 1 # equal -./subx run examples/ex10 abc abcd # 0; not equal -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex10 +test $EMULATED && { + ./subx run examples/ex10 abc abc || ret=$? + test $ret -eq 1 # equal + ./subx run examples/ex10 abc abcd # 0; not equal +} +test $NATIVE && { examples/ex10 abc abc || ret=$? test $ret -eq 1 # equal examples/ex10 abc abcd # 0; not equal @@ -118,30 +149,34 @@ test `uname` = 'Linux' && { echo ex11 ./subx translate examples/ex11.subx -o examples/ex11 -[ "$1" != record ] && git diff --exit-code examples/ex11 -./subx run examples/ex11 -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code examples/ex11 +test $EMULATED && { + ./subx run examples/ex11 + echo +} +test $NATIVE && { examples/ex11 echo } echo ex12 ./subx translate examples/ex12.subx -o examples/ex12 -[ "$1" != record ] && git diff --exit-code examples/ex12 -./subx run examples/ex12 # final byte of mmap'd address is well-nigh guaranteed to be 0 -test `uname` = 'Linux' && examples/ex12 +test "$1" = 'record' || git diff --exit-code examples/ex12 +test $EMULATED && ./subx run examples/ex12 # final byte of mmap'd address is well-nigh guaranteed to be 0 +test $NATIVE && examples/ex12 # Larger apps that use the standard library. echo factorial ./subx translate 0*.subx apps/factorial.subx -o apps/factorial -[ "$1" != record ] && git diff --exit-code apps/factorial -./subx run apps/factorial || ret=$? -test $ret -eq 120 # factorial(5) -./subx run apps/factorial test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/factorial +test $EMULATED && { + ./subx run apps/factorial || ret=$? + test $ret -eq 120 # factorial(5) + ./subx run apps/factorial test + echo +} +test $NATIVE && { apps/factorial || ret=$? test $ret -eq 120 # factorial(5) apps/factorial test @@ -150,31 +185,37 @@ test `uname` = 'Linux' && { echo crenshaw2-1 ./subx translate 0*.subx apps/crenshaw2-1.subx -o apps/crenshaw2-1 -[ "$1" != record ] && git diff --exit-code apps/crenshaw2-1 -./subx run apps/crenshaw2-1 test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/crenshaw2-1 +test $EMULATED && { + ./subx run apps/crenshaw2-1 test + echo +} +test $NATIVE && { apps/crenshaw2-1 test echo } echo crenshaw2-1b ./subx translate 0*.subx apps/crenshaw2-1b.subx -o apps/crenshaw2-1b -[ "$1" != record ] && git diff --exit-code apps/crenshaw2-1b -./subx run apps/crenshaw2-1b test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/crenshaw2-1b +test $EMULATED && { + ./subx run apps/crenshaw2-1b test + echo +} +test $NATIVE && { apps/crenshaw2-1b test echo } echo handle ./subx translate 0*.subx apps/handle.subx -o apps/handle -[ "$1" != record ] && git diff --exit-code apps/handle -./subx 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 `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/handle +test $EMULATED && { + ./subx 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; } @@ -184,60 +225,72 @@ test `uname` = 'Linux' && { echo hex ./subx translate 0*.subx apps/subx-common.subx apps/hex.subx -o apps/hex -[ "$1" != record ] && git diff --exit-code apps/hex -./subx run apps/hex test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/hex +test $EMULATED && { + ./subx run apps/hex test + echo +} +test $NATIVE && { apps/hex test echo } echo survey ./subx translate 0*.subx apps/subx-common.subx apps/survey.subx -o apps/survey -[ "$1" != record ] && git diff --exit-code apps/survey -./subx run apps/survey test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/survey +test $EMULATED && { + ./subx run apps/survey test + echo +} +test $NATIVE && { apps/survey test echo } echo pack ./subx translate 0*.subx apps/subx-common.subx apps/pack.subx -o apps/pack -[ "$1" != record ] && git diff --exit-code apps/pack -./subx run apps/pack test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/pack +test $EMULATED && { + ./subx run apps/pack test + echo +} +test $NATIVE && { apps/pack test echo } echo assort ./subx translate 0*.subx apps/subx-common.subx apps/assort.subx -o apps/assort -[ "$1" != record ] && git diff --exit-code apps/assort -./subx run apps/assort test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/assort +test $EMULATED && { + ./subx run apps/assort test + echo +} +test $NATIVE && { apps/assort test echo } echo dquotes ./subx translate 0*.subx apps/subx-common.subx apps/dquotes.subx -o apps/dquotes -[ "$1" != record ] && git diff --exit-code apps/dquotes -./subx run apps/dquotes test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/dquotes +test $EMULATED && { + ./subx run apps/dquotes test + echo +} +test $NATIVE && { apps/dquotes test echo } echo tests ./subx translate 0*.subx apps/subx-common.subx apps/tests.subx -o apps/tests -[ "$1" != record ] && git diff --exit-code apps/tests -./subx run apps/tests test -echo -test `uname` = 'Linux' && { +test "$1" = 'record' || git diff --exit-code apps/tests +test $EMULATED && { + ./subx run apps/tests test + echo +} +test $NATIVE && { apps/tests test echo } @@ -259,67 +312,88 @@ echo "== translating using SubX" # example programs echo ex1 -cat examples/ex1.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex1 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex1.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex1 - +} +test $NATIVE && { cat examples/ex1.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex1 - } echo ex2 -cat examples/ex2.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex2 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex2.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex2 - +} +test $NATIVE && { cat examples/ex2.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex2 - } echo ex3 -cat examples/ex3.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex3 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex3.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex3 - +} +test $NATIVE && { cat examples/ex3.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex3 - } echo ex4 -cat examples/ex4.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex4 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex4.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex4 - +} +test $NATIVE && { cat examples/ex4.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex4 - } echo ex5 -cat examples/ex5.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex5 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex5.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex5 - +} +test $NATIVE && { cat examples/ex5.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex5 - } echo ex6 -cat examples/ex6.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex6 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex6.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex6 - +} +test $NATIVE && { cat examples/ex6.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex6 - } echo ex7 -cat examples/ex7.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex7 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex7.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex7 - +} +test $NATIVE && { cat examples/ex7.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex7 - } echo ex8 -cat examples/ex8.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex8 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex8.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex8 - +} +test $NATIVE && { cat examples/ex8.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex8 - } echo ex9 -cat examples/ex9.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex9 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex9.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex9 - +} +test $NATIVE && { cat examples/ex9.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex9 - } echo ex10 -cat examples/ex10.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex10 - -test `uname` = 'Linux' && { +test $EMULATED && { + cat examples/ex10.subx |./subx_bin run apps/tests |./subx_bin run apps/dquotes |./subx_bin run apps/assort |./subx_bin run apps/pack |./subx_bin run apps/survey |./subx_bin run apps/hex |diff examples/ex10 - +} +test $NATIVE && { cat examples/ex10.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex10 - } # Only native runs beyond this point. Emulated runs time out on travis-ci.org. -test `uname` = 'Linux' || exit 0 +test $EMULATED && echo "skipping remaining runs in emulated mode" +test $NATIVE || exit 0 echo ex11 cat examples/ex11.subx |apps/tests |apps/dquotes |apps/assort |apps/pack |apps/survey |apps/hex |diff examples/ex11 - |