many pervasive clean-ups
[feisty_meow.git] / nucleus / library / unit_test / unit_base.cpp
index dfcd858ef7fdbc5078b64c5873cc819ac96a866b..08e7a8967fbd53a51cf743c80dc91eb170b3c336 100644 (file)
@@ -270,8 +270,7 @@ int unit_base::final_report()
 
   astring keyword = "FAILURE";  // but be pessimistic about overall result at first..?
 
-
-BASE_LOG(a_sprintf("total tests %d passed tests %d", c_total_tests, c_passed_tests));
+// BASE_LOG(a_sprintf("total tests %d passed tests %d", c_total_tests, c_passed_tests));
 
   // check whether we really did succeed or not.
   if (c_total_tests == c_passed_tests) keyword = "SUCCESS";  // success!
@@ -300,7 +299,7 @@ BASE_LOG(a_sprintf("total tests %d passed tests %d", c_total_tests, c_passed_tes
 void unit_base::write_cppunit_xml()
 {
   auto_synchronizer synch(c_lock);
-  astring logs_dir = environment::get("LOGS_DIR");
+  astring logs_dir = environment::get("FEISTY_MEOW_LOGS");
   if (logs_dir == astring::empty_string()) logs_dir = "logs";  // uhhh.
   astring outfile = logs_dir + "/"
       + filename(application_configuration::application_name()).basename().raw()