Remove testcase time printing in bionic-unit-tests.

Bug: 19075565
Change-Id: Icccb60657a2985e96abb1703673f0ebe2199586a
This commit is contained in:
Yabin Cui 2015-01-20 14:46:03 -08:00
parent 6104eb9fa7
commit 516eb53113
1 changed files with 0 additions and 16 deletions

View 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");