diff options
-rwxr-xr-x | subx/test_apps | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/subx/test_apps b/subx/test_apps index 2bb7adec..edd2116b 100755 --- a/subx/test_apps +++ b/subx/test_apps @@ -160,4 +160,14 @@ test `uname` = 'Linux' && { echo } +echo hex +CFLAGS=-g ./subx translate *.subx apps/hex.subx -o apps/hex +[ "$1" != record ] && git diff --quiet apps/hex +CFLAGS=-g ./subx run apps/hex test +echo +test `uname` = 'Linux' && { + apps/hex test + echo +} + exit 0 |