about summary refs log tree commit diff stats
path: root/cpp/002test
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-22 13:35:47 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-22 13:35:47 -0700
commit9e608a7704e79834d7a5a314cec6fe3a5f153711 (patch)
treef182a970b543a24d3fa074d22592e9c4ca288080 /cpp/002test
parentb39ceb27794272100154b88b6d50195d1dca0431 (diff)
downloadmu-9e608a7704e79834d7a5a314cec6fe3a5f153711.tar.gz
1134
Diffstat (limited to 'cpp/002test')
-rw-r--r--cpp/002test18
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) {