aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@theqtcompany.com>2015-06-12 17:21:19 +0200
committerSimon Hausmann <simon.hausmann@theqtcompany.com>2015-06-15 09:31:20 +0000
commit5905ceed8a4f46399ba4b6b93ef71beb14c855fd (patch)
tree601e45d06854d2cef40a7a5484ccefda64099174 /tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp
parent2ca2d977848ff06fff10c7be3946312707f3ff27 (diff)
Don't wait forever in QQmlDebugClient test
The test is intended to wait for 5 seconds but in fact it waited for 5 * 30.1 seconds. Change-Id: Id2af7513fc7af6ab5e67d04d802a24744483f5e1 Reviewed-by: Joerg Bornemann <joerg.bornemann@theqtcompany.com>
Diffstat (limited to 'tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp')
-rw-r--r--tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp b/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp
index 7ca69b6d44..99ba06ae31 100644
--- a/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp
+++ b/tests/auto/qml/debugger/qqmldebugclient/tst_qqmldebugclient.cpp
@@ -76,9 +76,8 @@ void tst_QQmlDebugClient::initTestCase()
for (int i = 0; i < 50; ++i) {
// try for 5 seconds ...
m_conn->connectToHost("127.0.0.1", PORT);
- if (m_conn->waitForConnected())
+ if (m_conn->waitForConnected(100))
break;
- QTest::qSleep(100);
}
QVERIFY(m_conn->isConnected());