From 9f0077e90d0bd22731a9a8c36fe0d631349609f0 Mon Sep 17 00:00:00 2001 From: Lev Dragunov Date: Thu, 3 Sep 2015 15:04:28 +0300 Subject: [PATCH] [tests] Concurrent output collision fix. --- testing/testingmain.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/testingmain.cpp b/testing/testingmain.cpp index dfb9c168f9..84ce172f1e 100644 --- a/testing/testingmain.cpp +++ b/testing/testingmain.cpp @@ -152,7 +152,7 @@ int main(int argc, char * argv[]) if (g_testingOptions.m_suppressRegExp && regexp::Matches(testNames[iTest], suppressRegExp)) continue; - cerr << "Running " << testNames[iTest] << endl; + LOG(LINFO, ("Running", testNames[iTest])); if (!g_bLastTestOK) { // Somewhere else global variables have been reset. @@ -209,7 +209,7 @@ int main(int argc, char * argv[]) for (size_t i = 0; i < testNames.size(); ++i) { if (!testResults[i]) - cerr << testNames[i] << endl; + LOG(LINFO, (testNames[i])); } LOG(LINFO, ("Some tests FAILED.")); return STATUS_FAILED;