Remove BEGIN/END
authorBrian Aker <brian@tangent.org>
Mon, 22 Oct 2012 05:53:38 +0000 (01:53 -0400)
committerBrian Aker <brian@tangent.org>
Mon, 22 Oct 2012 05:53:38 +0000 (01:53 -0400)
libtest/main.cc

index 363c2a2ff614c58d2188c3addf4d13ce97e6b7d2..d6c4ecbfa59e82c25cbda5802905c291c0632826 100644 (file)
@@ -83,7 +83,6 @@ static void stats_print(libtest::Framework *frame)
 
 int main(int argc, char *argv[])
 {
-  Out << "BEGIN:" << argv[0];
   bool opt_massive= false;
   unsigned long int opt_repeat= 1; // Run all tests once
   bool opt_quiet= false;
@@ -365,7 +364,5 @@ int main(int argc, char *argv[])
     exit_code= EXIT_FAILURE;
   }
 
-  Out << "END:" << argv[0];
-
   return exit_code;
 }