diff options
author | Kartik Agaram <vc@akkartik.com> | 2019-05-18 00:50:17 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2019-05-18 00:56:04 -0700 |
commit | ab16d49bdc55d64ba27f2ef5fe6811669b9d5c1f (patch) | |
tree | 97bbac0b1623cba7913ebc032039eb72ed942cbf | |
parent | 11e725f277d08031d6b18599612a7bbddac050cd (diff) | |
download | mu-ab16d49bdc55d64ba27f2ef5fe6811669b9d5c1f.tar.gz |
5187
CI should have been failing for a few days. Now fixed.
-rw-r--r-- | subx/066write-buffered.subx (renamed from subx/067write-buffered.subx) | 0 | ||||
-rw-r--r-- | subx/067print-int.subx (renamed from subx/066print-int.subx) | 0 | ||||
-rwxr-xr-x | subx/test_layers | 5 |
3 files changed, 3 insertions, 2 deletions
diff --git a/subx/067write-buffered.subx b/subx/066write-buffered.subx index 343aa364..343aa364 100644 --- a/subx/067write-buffered.subx +++ b/subx/066write-buffered.subx diff --git a/subx/066print-int.subx b/subx/067print-int.subx index 1280f348..1280f348 100644 --- a/subx/066print-int.subx +++ b/subx/067print-int.subx 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 |