about summary refs log tree commit diff stats
path: root/subx/test_layers
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2019-05-18 00:50:17 -0700
committerKartik Agaram <vc@akkartik.com>2019-05-18 00:56:04 -0700
commitab16d49bdc55d64ba27f2ef5fe6811669b9d5c1f (patch)
tree97bbac0b1623cba7913ebc032039eb72ed942cbf /subx/test_layers
parent11e725f277d08031d6b18599612a7bbddac050cd (diff)
downloadmu-ab16d49bdc55d64ba27f2ef5fe6811669b9d5c1f.tar.gz
5187
CI should have been failing for a few days. Now fixed.
Diffstat (limited to 'subx/test_layers')
-rwxr-xr-xsubx/test_layers5
1 files changed, 3 insertions, 2 deletions
diff --git a/subx/test_layers b/subx/test_layers
index ad5ab1a0..f1e22faf 100755
--- a/subx/test_layers
+++ b/subx/test_layers
@@ -20,9 +20,10 @@ CFLAGS=$CFLAGS ./build  # build optimized by default since we'll be running it r
 # add SubX files one at a time
 for f in [0-9]*.subx
 do
-  [ $f == '049'* ]  &&  continue
+  [ $f == *'memory_layout.subx' ]  &&  continue  # the very first .subx layer has no code
   echo "=== $f"
-  ./subx translate $(../enumerate/enumerate --until $f |grep '\.subx$') -o a.elf  &&  ./subx run a.elf
+  ./subx translate $(../enumerate/enumerate --until $f |grep '\.subx$') -o a.elf
+  ./subx run a.elf
   echo
   test `uname` = 'Linux'  &&  {
     chmod +x a.elf