about summary refs log tree commit diff stats
path: root/subx/test_layers
diff options
context:
space:
mode:
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