OSDN Git Service

Remove testcase time printing in bionic-unit-tests.
authorYabin Cui <yabinc@google.com>
Tue, 20 Jan 2015 22:46:03 +0000 (14:46 -0800)
committerYabin Cui <yabinc@google.com>
Tue, 20 Jan 2015 22:46:03 +0000 (14:46 -0800)
Bug: 19075565
Change-Id: Icccb60657a2985e96abb1703673f0ebe2199586a

tests/gtest_main.cpp

index 6c5023b..99cd4ee 100644 (file)
@@ -319,18 +319,6 @@ static void OnTestTimeoutPrint(const TestCase& testcase, size_t test_id) {
   fflush(stdout);
 }
 
-static void TestcaseTimePrint(const TestCase& testcase) {
-  int64_t testcase_time = 0;
-  for (size_t i = 0; i < testcase.TestCount(); ++i) {
-    testcase_time += testcase.GetTestTime(i);
-  }
-  printf("%zu %s from %s (%lld ms total)\n", testcase.TestCount(),
-                                             (testcase.TestCount() == 1) ? "test" : "tests",
-                                             testcase.GetName().c_str(),
-                                             testcase_time / 1000000LL);
-  fflush(stdout);
-}
-
 static void OnTestIterationEndPrint(const std::vector<TestCase>& testcase_list, size_t /*iteration*/,
                                     int64_t elapsed_time) {
 
@@ -364,10 +352,6 @@ static void OnTestIterationEndPrint(const std::vector<TestCase>& testcase_list,
     }
   }
 
-  for (auto const& testcase : testcase_list) {
-    TestcaseTimePrint(testcase);
-  }
-
   ColoredPrintf(COLOR_GREEN,  "[==========] ");
   printf("%zu %s from %zu %s ran.", test_count, (test_count == 1) ? "test" : "tests",
                                     testcase_count, (testcase_count == 1) ? "test case" : "test cases");