diff options
Diffstat (limited to 'subx/test_layers')
-rwxr-xr-x | subx/test_layers | 4 |
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 |