diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-22 11:49:24 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-22 11:49:24 -0700 |
commit | ccd792dace1439b60882fafd1d1bd4b06c405d9e (patch) | |
tree | e1c5b825eab5a0173bf57d114eeeb2c5fb26a6de /cpp/001test | |
parent | 3c6784a87bb362a7a2f32d617c5950fec23460cd (diff) | |
download | mu-ccd792dace1439b60882fafd1d1bd4b06c405d9e.tar.gz |
1126 - 'mu test x.mu' runs just scenarios in x.mu
Required still more tweaking of Recipe namespaces. Mindlessly inserting setup() took a couple of hours to debug because the test function and the function it was testing ended up getting the same recipe number, with the inevitable infinite loop :/
Diffstat (limited to 'cpp/001test')
-rw-r--r-- | cpp/001test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cpp/001test b/cpp/001test index 8c4bc5e3..0db10e4b 100644 --- a/cpp/001test +++ b/cpp/001test @@ -60,6 +60,8 @@ if (argc > 2 && is_equal(argv[1], "test") && is_number(argv[2])) { return 0; } +// End Test Runs + :(code) void run_tests() { time_t t; time(&t); |