summaryrefslogtreecommitdiffstats
path: root/src/testlib/qtestcase.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-12-15 17:17:12 +1000
committerQt by Nokia <qt-info@nokia.com>2011-12-16 02:43:46 +0100
commitf4ccbc2868f0bef9e9a4cfb8dc8ce2023d221179 (patch)
tree738d19b540f0b8bebb3a44bdbe992cd98bb7e2c9 /src/testlib/qtestcase.cpp
parent8c2727ac182ccc6ef46054c4a09a1c7ad3c8374e (diff)
Avoid qDebug in verbose benchmark test output.
Use QTestLog::info() rather than qDebug() to output informational messages from testlib. Source file and line are deliberately omitted as they would come from testlib rather than from a test program. Change-Id: I7b479bba4d3d553c6fa846d8d5ea2c29a8ef42b8 Reviewed-by: Robin Burchell <robin+qt@viroteck.net> Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'src/testlib/qtestcase.cpp')
-rw-r--r--src/testlib/qtestcase.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/testlib/qtestcase.cpp b/src/testlib/qtestcase.cpp
index 2180dc4294..2b0182541e 100644
--- a/src/testlib/qtestcase.cpp
+++ b/src/testlib/qtestcase.cpp
@@ -1520,9 +1520,13 @@ static void qInvokeTestMethodDataEntry(char *slot)
if (QBenchmarkTestMethodData::current->isBenchmark() &&
QBenchmarkGlobalData::current->verboseOutput) {
if (i == -1) {
- qDebug() << "warmup stage result :" << QBenchmarkTestMethodData::current->result.value;
+ QTestLog::info(qPrintable(
+ QString::fromLatin1("warmup stage result : %1")
+ .arg(QBenchmarkTestMethodData::current->result.value)), 0, 0);
} else {
- qDebug() << "accumulation stage result:" << QBenchmarkTestMethodData::current->result.value;
+ QTestLog::info(qPrintable(
+ QString::fromLatin1("accumulation stage result: %1")
+ .arg(QBenchmarkTestMethodData::current->result.value)), 0, 0);
}
}
} while (QBenchmarkTestMethodData::current->isBenchmark()