about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rwxr-xr-xtest_apps18
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