From 516eb531137a50e2fd82108c5b7a43b87c103312 Mon Sep 17 00:00:00 2001 From: Yabin Cui Date: Tue, 20 Jan 2015 14:46:03 -0800 Subject: [PATCH] Remove testcase time printing in bionic-unit-tests. Bug: 19075565 Change-Id: Icccb60657a2985e96abb1703673f0ebe2199586a --- tests/gtest_main.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/tests/gtest_main.cpp b/tests/gtest_main.cpp index 6c5023bfd..99cd4eebb 100644 --- a/tests/gtest_main.cpp +++ b/tests/gtest_main.cpp @@ -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_list, size_t /*iteration*/, int64_t elapsed_time) { @@ -364,10 +352,6 @@ static void OnTestIterationEndPrint(const std::vector& 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");