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_layers4
1 files changed, 3 insertions, 1 deletions
diff --git a/subx/test_layers b/subx/test_layers
index 688a5a99..f1e22faf 100755
--- a/subx/test_layers
+++ b/subx/test_layers
@@ -20,8 +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 == *'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