diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-22 13:35:47 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-22 13:35:47 -0700 |
commit | 9e608a7704e79834d7a5a314cec6fe3a5f153711 (patch) | |
tree | f182a970b543a24d3fa074d22592e9c4ca288080 /cpp/002test | |
parent | b39ceb27794272100154b88b6d50195d1dca0431 (diff) | |
download | mu-9e608a7704e79834d7a5a314cec6fe3a5f153711.tar.gz |
1134
Diffstat (limited to 'cpp/002test')
-rw-r--r-- | cpp/002test | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/cpp/002test b/cpp/002test index 6f0fcaa8..465f213f 100644 --- a/cpp/002test +++ b/cpp/002test @@ -48,7 +48,12 @@ if (Run_tests) { // we run some tests and then exit; assume no state need be maintained afterward // End Test Run Initialization - run_tests(); + time_t t; time(&t); + cerr << "C tests: " << ctime(&t); + for (size_t i=0; i < sizeof(Tests)/sizeof(Tests[0]); ++i) { + run_test(i); + } + // End Tests cerr << '\n'; if (Num_failures > 0) cerr << Num_failures << " failure" @@ -58,15 +63,6 @@ if (Run_tests) { } :(code) -void run_tests() { - time_t t; time(&t); - cerr << "C tests: " << ctime(&t); - for (size_t i=0; i < sizeof(Tests)/sizeof(Tests[0]); ++i) { - run_test(i); - } - // End Tests -} - void run_test(size_t i) { if (i >= sizeof(Tests)/sizeof(Tests[0])) { cerr << "no test " << i << '\n'; @@ -77,8 +73,6 @@ void run_test(size_t i) { // End Test Setup (*Tests[i])(); if (Passed) cerr << "."; - // Test Teardown - // End Test Teardown } bool is_number(const string& s) { |