about summary refs log tree commit diff stats
path: root/subx/test_layers
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-03-09 20:03:46 -0800
committerKartik Agaram <vc@akkartik.com>2019-03-09 20:03:46 -0800
commitc0d37cee02ad48160d1a5a9e187bc4721c3684be (patch)
tree3dfd303b72c0ff0933ba8b57db4d436599af2a53 /subx/test_layers
parent257ebf7f508d0a0352abf732019f00a1b3962741 (diff)
downloadmu-c0d37cee02ad48160d1a5a9e187bc4721c3684be.tar.gz
4998
Start running binaries natively in test_layers as well.

CI is still broken; need to investigate where my SubX emulation has a discrepancy
with native x86.
Diffstat (limited to 'subx/test_layers')
-rwxr-xr-xsubx/test_layers5
1 files changed, 5 insertions, 0 deletions
diff --git a/subx/test_layers b/subx/test_layers
index 288fab10..523d82b8 100755
--- a/subx/test_layers
+++ b/subx/test_layers
@@ -23,4 +23,9 @@ do
   echo "=== $f"
   ./subx translate $(../enumerate/enumerate --until $f |grep '\.subx$') -o foo  &&  ./subx run foo
   echo
+  test `uname` = 'Linux'  &&  {
+    chmod +x foo
+    ./foo
+    echo
+  }
 done