diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-25 16:22:27 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-25 16:22:27 -0700 |
commit | b22e5e144787370ea5d0a715e6979d2b987d4295 (patch) | |
tree | 881b6cc8d13c97a64038987e7f10b8d6f0235bc0 | |
parent | 95fbb9bfdc5691a7f22a20196eba4a9a95f473de (diff) | |
download | mu-b22e5e144787370ea5d0a715e6979d2b987d4295.tar.gz |
4408
Really Fix CI.
-rwxr-xr-x | build0 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/build0 b/build0 index 7c2f1da1..2cc4766d 100755 --- a/build0 +++ b/build0 @@ -19,6 +19,7 @@ cd tangle ls [0-9]*.test.cc |sed 's/.*/#include "&"/' > test_file_list # list of tests to run grep -h "^[[:space:]]*void test_" [0-9]*.cc |sed 's/^\s*void \(.*\)() {$/\1,/' > test_list + grep -h "^\s*void test_" [0-9]*.cc |sed 's/^\s*void \(.*\)() {.*/"\1",/' > test_name_list # } # Now that we have all the _lists, compile 'tangle' g++ -g -O2 boot.cc -o tangle |