diff options
author | Kartik Agaram <vc@akkartik.com> | 2020-01-02 01:38:54 -0800 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2020-01-02 01:38:54 -0800 |
commit | df8498fb8294cb07d02076cf3881617b5af07974 (patch) | |
tree | 18969ee204c4734cdb98d29a93ee0ae8191b08ff | |
parent | d02aa9ac0b9e1130ffcd5a27aa1304e80eee08d9 (diff) | |
download | mu-df8498fb8294cb07d02076cf3881617b5af07974.tar.gz |
5864
-rwxr-xr-x | build_and_test_until | 2 | ||||
-rwxr-xr-x | run_one_test | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/build_and_test_until b/build_and_test_until index 0532f653..710e1d55 100755 --- a/build_and_test_until +++ b/build_and_test_until @@ -15,4 +15,4 @@ then echo $1 > .until fi -ONLY_CPP=1 ./build --until $1 && ./subx_bin test $2 +./build --until $1 && ./subx_bin test $2 diff --git a/run_one_test b/run_one_test index 04af6ba0..bc237c12 100755 --- a/run_one_test +++ b/run_one_test @@ -20,4 +20,4 @@ fi set -e ./debug_translate init.linux $(echo $FILES) /tmp/run_one_test.subx -ONLY_CPP=1 CFLAGS=$CFLAGS ./subx --debug --trace run a.elf +CFLAGS=$CFLAGS ./subx --debug --trace run a.elf |