diff options
author | Kartik Agaram <vc@akkartik.com> | 2018-07-25 12:24:00 -0700 |
---|---|---|
committer | Kartik Agaram <vc@akkartik.com> | 2018-07-25 13:07:01 -0700 |
commit | f898ee7a374c20f58150158a5066f547060d9c24 (patch) | |
tree | 2660867079b0a36f4b4a27bfec1d5dd00cc1f521 /build3 | |
parent | d7297b82c57b7920d6cff9c22e87afe77451a786 (diff) | |
download | mu-f898ee7a374c20f58150158a5066f547060d9c24.tar.gz |
4403
Couple of improvements for the tangle/ directory: a) Start running tangle unit tests at build time again. b) Option to print out test names as they run, just like in top-level.
Diffstat (limited to 'build3')
-rwxr-xr-x | build3 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/build3 b/build3 index 09c7398d..db251087 100755 --- a/build3 +++ b/build3 @@ -125,9 +125,11 @@ older_than tangle/tangle tangle/*.cc && { ls [0-9]*.test.cc |sed 's/.*/#include "&"/' |update test_file_list # list of tests to run grep -h "^[[:space:]]*void test_" [0-9]*.cc |sed 's/^\s*void \(.*\)() {$/\1,/' |update test_list + grep -h "^\s*void test_" [0-9]*.cc |sed 's/^\s*void \(.*\)() {.*/"\1",/' |update test_name_list # } # Now that we have all the _lists, compile 'tangle' $CXX $CFLAGS boot.cc -o tangle + ./tangle test noisy_cd .. # no effect; just to show us returning to the parent directory } |