aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@nokia.com>2011-11-17 12:26:40 +0100
committerQt by Nokia <qt-info@nokia.com>2011-11-21 14:37:00 +0100
commit56f4015c25b744244e34fb6bb16291d0df0a6dba (patch)
tree058c94b6b1d801f888b24bd754c74066b9eb359a /tests
parentd7a5727d6942f77b2849ff27af472bc73f3b9dcb (diff)
Debugger: Fix QDeclarativeDebugTrace autotest
Change-Id: Ic17c42b6a6e388b92729fd2f653515b714f765b0 Reviewed-by: Christiaan Janssen <christiaan.janssen@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/declarative/debugger/qdeclarativedebugtrace/tst_qdeclarativedebugtrace.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/debugger/qdeclarativedebugtrace/tst_qdeclarativedebugtrace.cpp b/tests/auto/declarative/debugger/qdeclarativedebugtrace/tst_qdeclarativedebugtrace.cpp
index 8359012e2b..9ee5dc8b7f 100644
--- a/tests/auto/declarative/debugger/qdeclarativedebugtrace/tst_qdeclarativedebugtrace.cpp
+++ b/tests/auto/declarative/debugger/qdeclarativedebugtrace/tst_qdeclarativedebugtrace.cpp
@@ -222,7 +222,7 @@ void tst_QDeclarativeDebugTrace::blockingConnectWithTraceEnabled()
m_client->setTraceStatus(false);
if (!QDeclarativeDebugTest::waitForSignal(m_client, SIGNAL(complete()))) {
QString failMsg
- = QString("No trace received in time. App output: \n\n").arg(m_process->output());
+ = QString("No trace received in time. App output: \n%1\n").arg(m_process->output());
QFAIL(qPrintable(failMsg));
}
@@ -248,7 +248,7 @@ void tst_QDeclarativeDebugTrace::blockingConnectWithTraceDisabled()
m_client->setTraceStatus(false);
if (!QDeclarativeDebugTest::waitForSignal(m_client, SIGNAL(complete()))) {
QString failMsg
- = QString("No trace received in time. App output: \n\n").arg(m_process->output());
+ = QString("No trace received in time. App output: \n%1\n").arg(m_process->output());
QFAIL(qPrintable(failMsg));
}
@@ -270,7 +270,7 @@ void tst_QDeclarativeDebugTrace::nonBlockingConnect()
m_client->setTraceStatus(false);
if (!QDeclarativeDebugTest::waitForSignal(m_client, SIGNAL(complete()))) {
QString failMsg
- = QString("No trace received in time. App output: \n\n").arg(m_process->output());
+ = QString("No trace received in time. App output: \n%1\n").arg(m_process->output());
QFAIL(qPrintable(failMsg));
}