diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-05-23 00:01:25 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-05-23 00:01:25 -0700 |
commit | 6b43542f6c960ad71b7af315263c856ec7dda811 (patch) | |
tree | c40e5372fd0c1017411dbe62e211c4270b734b40 | |
parent | 9a77780158842db6e4aa098f5027e030fc3bd878 (diff) | |
download | mu-6b43542f6c960ad71b7af315263c856ec7dda811.tar.gz |
6385
-rwxr-xr-x | test_apps | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/test_apps b/test_apps index 28d045dc..e9532c66 100755 --- a/test_apps +++ b/test_apps @@ -250,7 +250,7 @@ test $EMULATED && { ./bootstrap run apps/sigils test echo } -test `uname` = 'Linux' && { +test $NATIVE && { apps/sigils test echo } @@ -265,7 +265,7 @@ test $EMULATED && { ./bootstrap run apps/calls test echo } -test `uname` = 'Linux' && { +test $NATIVE && { apps/calls test echo } @@ -278,7 +278,7 @@ test $EMULATED && { ./bootstrap run apps/braces test echo } -test `uname` = 'Linux' && { +test $NATIVE && { apps/braces test echo } @@ -291,7 +291,7 @@ test $EMULATED && { ./bootstrap run apps/mu test echo } -test `uname` = 'Linux' && { +test $NATIVE && { apps/mu test echo } |