Commit fbe18e80 authored by Alexander Alekhin's avatar Alexander Alekhin

ts: dump test parameters value

parent e89ae986
...@@ -4583,6 +4583,7 @@ void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) { ...@@ -4583,6 +4583,7 @@ void PrettyUnitTestResultPrinter::OnTestCaseStart(const TestCase& test_case) {
void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) { void PrettyUnitTestResultPrinter::OnTestStart(const TestInfo& test_info) {
ColoredPrintf(COLOR_GREEN, "[ RUN ] "); ColoredPrintf(COLOR_GREEN, "[ RUN ] ");
PrintTestName(test_info.test_case_name(), test_info.name()); PrintTestName(test_info.test_case_name(), test_info.name());
PrintFullTestCommentIfPresent(test_info);
printf("\n"); printf("\n");
fflush(stdout); fflush(stdout);
} }
......
...@@ -1893,12 +1893,6 @@ void TestBase::TearDown() ...@@ -1893,12 +1893,6 @@ void TestBase::TearDown()
} }
} }
const ::testing::TestInfo* const test_info = ::testing::UnitTest::GetInstance()->current_test_info();
const char* type_param = test_info->type_param();
const char* value_param = test_info->value_param();
if (value_param) printf("[ VALUE ] \t%s\n", value_param), fflush(stdout);
if (type_param) printf("[ TYPE ] \t%s\n", type_param), fflush(stdout);
#ifdef CV_COLLECT_IMPL_DATA #ifdef CV_COLLECT_IMPL_DATA
if(param_collect_impl) if(param_collect_impl)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment