AutoTest: Give some hint about the warning's origin

Change-Id: I4e26eea953d3e4e840678bd45eb2e4961e270eb2
Reviewed-by: Nikolai Kosjar <nikolai.kosjar@qt.io>
This commit is contained in:
Christian Stenger
2016-07-11 11:06:58 +02:00
parent d6603365c3
commit b4c263c974
2 changed files with 2 additions and 2 deletions

View File

@@ -241,7 +241,7 @@ void QtTestOutputReader::processOutput()
break; break;
default: default:
// this must come from plain printf() calls - but this will be ignored anyhow // this must come from plain printf() calls - but this will be ignored anyhow
qWarning() << "Ignored plain output:" << text.toString(); qWarning() << "AutoTest.Run: Ignored plain output:" << text.toString();
break; break;
} }
break; break;

View File

@@ -45,7 +45,7 @@ TestOutputReader::TestOutputReader(const QFutureInterface<TestResultPtr> &future
void TestOutputReader::processStdError() void TestOutputReader::processStdError()
{ {
qWarning() << "Ignored plain output:" << m_testApplication->readAllStandardError(); qWarning() << "AutoTest.Run: Ignored plain output:" << m_testApplication->readAllStandardError();
} }
} // namespace Internal } // namespace Internal