diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-03-09 20:03:46 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-03-09 20:03:46 -0800 |
commit | c0d37cee02ad48160d1a5a9e187bc4721c3684be (patch) | |
tree | 3dfd303b72c0ff0933ba8b57db4d436599af2a53 | |
parent | 257ebf7f508d0a0352abf732019f00a1b3962741 (diff) | |
download | mu-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.
-rwxr-xr-x | subx/test_layers | 5 |
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 |