diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-01-20 23:57:36 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-01-21 00:00:00 -0800 |
commit | 148ab0a23e2a4b108657cd20c149f410de2b2a1e (patch) | |
tree | 427631f27792cffa9bab88eb9501ca054d0700ad /subx/test_apps | |
parent | c65dee2d99a7d1a5f0fbc8826b616683713ebef6 (diff) | |
download | mu-148ab0a23e2a4b108657cd20c149f410de2b2a1e.tar.gz |
4939
Diffstat (limited to 'subx/test_apps')
-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 3882066b..acdd23ed 100755 --- a/subx/test_apps +++ b/subx/test_apps @@ -178,4 +178,14 @@ test `uname` = 'Linux' && { echo } +echo pack +CFLAGS=-g ./subx translate *.subx apps/pack.subx -o apps/pack +[ "$1" != record ] && git diff --quiet apps/pack +CFLAGS=-g ./subx run apps/pack test +echo +test `uname` = 'Linux' && { + apps/pack test + echo +} + exit 0 |