summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativedebugclient
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-04-21 01:40:47 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-04-21 01:40:47 (GMT)
commitcff7d95a782c6a5c1a0e5cc0f3f1840ea683a216 (patch)
treeff897685461524e86ff6ec0980713ed7c938e3a8 /tests/auto/declarative/qdeclarativedebugclient
parent61f3cb6e79fea0aed80df091013c2228f64955ec (diff)
downloadQt-cff7d95a782c6a5c1a0e5cc0f3f1840ea683a216.zip
Qt-cff7d95a782c6a5c1a0e5cc0f3f1840ea683a216.tar.gz
Qt-cff7d95a782c6a5c1a0e5cc0f3f1840ea683a216.tar.bz2
Ignore warnings
Task-number: QTBUG-10035
Diffstat (limited to 'tests/auto/declarative/qdeclarativedebugclient')
-rw-r--r--tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp b/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp
index fb17f90..aee8ef1 100644
--- a/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp
+++ b/tests/auto/declarative/qdeclarativedebugclient/tst_qdeclarativedebugclient.cpp
@@ -74,11 +74,15 @@ private slots:
void tst_QDeclarativeDebugClient::initTestCase()
{
+ QTest::ignoreMessage(QtWarningMsg, "QDeclarativeDebugServer: Waiting for connection on port 3768...");
+
qputenv("QML_DEBUG_SERVER_PORT", "3768");
new QDeclarativeEngine(this);
m_conn = new QDeclarativeDebugConnection(this);
m_conn->connectToHost("127.0.0.1", 3768);
+
+ QTest::ignoreMessage(QtWarningMsg, "QDeclarativeDebugServer: Connection established");
bool ok = m_conn->waitForConnected();
Q_ASSERT(ok);