diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-09-19 23:34:21 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-09-19 23:34:21 -0700 |
commit | 915aaa21a1b3430fa917884d5187f5bcb8bfccfc (patch) | |
tree | 57e7da0ba565927dcfc2807c0b6a98cd830976b5 | |
parent | a19dddcabe5c818b0ae277d99eabefae322b820c (diff) | |
download | mu-915aaa21a1b3430fa917884d5187f5bcb8bfccfc.tar.gz |
5677
-rwxr-xr-x | test_apps | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/test_apps b/test_apps index d69e5b83..41430199 100755 --- a/test_apps +++ b/test_apps @@ -248,8 +248,10 @@ done echo sigils ./subx translate init.$OS 0*.subx apps/subx-params.subx apps/sigils.subx -o apps/sigils [ "$1" != record ] && git diff --exit-code apps/sigils -./subx run apps/sigils test -echo +test $EMULATED && { + ./subx run apps/sigils test + echo +} test `uname` = 'Linux' && { apps/sigils test echo @@ -259,8 +261,10 @@ echo calls cat init.$OS 0*.subx apps/subx-params.subx apps/calls.subx | apps/sigils > a.sigils ./subx translate a.sigils -o apps/calls [ "$1" != record ] && git diff --exit-code apps/calls -./subx run apps/calls test -echo +test $EMULATED && { + ./subx run apps/calls test + echo +} test `uname` = 'Linux' && { apps/calls test echo @@ -270,8 +274,10 @@ echo braces cat init.$OS 0*.subx apps/subx-params.subx apps/braces.subx | apps/calls | apps/sigils > a.sigils ./subx translate a.sigils -o apps/braces [ "$1" != record ] && git diff --exit-code apps/braces -./subx run apps/braces test -echo +test $EMULATED && { + ./subx run apps/braces test + echo +} test `uname` = 'Linux' && { apps/braces test echo |