diff options
-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 } |