about summary refs log tree commit diff stats
path: root/tangle/002main.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-07-25 12:24:00 -0700
committerKartik Agaram <vc@akkartik.com>2018-07-25 13:07:01 -0700
commitf898ee7a374c20f58150158a5066f547060d9c24 (patch)
tree2660867079b0a36f4b4a27bfec1d5dd00cc1f521 /tangle/002main.cc
parentd7297b82c57b7920d6cff9c22e87afe77451a786 (diff)
downloadmu-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 'tangle/002main.cc')
-rw-r--r--tangle/002main.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/tangle/002main.cc b/tangle/002main.cc
index c8c61039..4529c463 100644
--- a/tangle/002main.cc
+++ b/tangle/002main.cc
@@ -22,6 +22,7 @@ string flag_value(const string& flag, int argc, const char* argv[]) {
 
 int run_tests() {
   for (unsigned long i=0; i < sizeof(Tests)/sizeof(Tests[0]); ++i) {
+//?     cerr << "running " << Test_names[i] << '\n';
     START_TRACING_UNTIL_END_OF_SCOPE;
     setup();
     (*Tests[i])();