aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmlconsole
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@digia.com>2014-01-15 12:30:36 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-15 14:09:50 +0100
commit019598f57e892feacfb43b1095b3ccf5cec4d4ee (patch)
treed47d77404ddaae48aa59e03349191fee84facc19 /tests/auto/qml/qqmlconsole
parent662046fe17c76d4fe505f0a04a66aa3477c14b32 (diff)
Make sure that profiling can only be started if debugging is enabled.
Enabling the profiler doesn't make much sense if there is no debug service as the messages can't be sent anywhere then. Furthermore, the profiler instance is only properly initialized if debugging is enabled and thus enabling profiling without debugging being enabled can cause problems. Change-Id: I784a110126d45a9a2bc9d9e14d9a22e2980c3a42 Reviewed-by: Kai Koehne <kai.koehne@digia.com>
Diffstat (limited to 'tests/auto/qml/qqmlconsole')
-rw-r--r--tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp b/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp
index e6f31dcb83..a37d705284 100644
--- a/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp
+++ b/tests/auto/qml/qqmlconsole/tst_qqmlconsole.cpp
@@ -115,8 +115,8 @@ void tst_qqmlconsole::profiling()
QUrl testUrl = testFileUrl("profiling.qml");
// profiling()
- QTest::ignoreMessage(QtDebugMsg, "Profiling started.");
- QTest::ignoreMessage(QtDebugMsg, "Profiling ended.");
+ QTest::ignoreMessage(QtWarningMsg, "Cannot start profiling because debug service is disabled. Start with -qmljsdebugger=port:XXXXX.");
+ QTest::ignoreMessage(QtWarningMsg, "Profiling was not started.");
QQmlComponent component(&engine, testUrl);
QObject *object = component.create();