aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@digia.com>2014-01-16 14:54:33 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-16 15:04:36 +0100
commitacd0baf6428601b7eab9f96eff559c27909f073e (patch)
tree5b70f88c189d18aa56b7c2aac537d8d57c6cc822
parentd574ccdd4ddd4d8c949ab5aa9f3a6baec25d9b81 (diff)
Increase the timeout for QPacketProtocol tests
Recent failures when testing a completely unrelated one-line commit (https://codereview.qt-project.org/74584) suggest that the timeout is actually too small. Change-Id: I9c3fd0b09c6be2d42f92485c3c223fe88bb8328e Reviewed-by: Michael Brasser <michael.brasser@live.com>
-rw-r--r--tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp
index 8dfd25b58b..7fd1f47838 100644
--- a/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp
+++ b/tests/auto/qml/debugger/qpacketprotocol/tst_qpacketprotocol.cpp
@@ -87,7 +87,7 @@ void tst_QPacketProtocol::init()
m_client->connectToHost(m_server->serverAddress(), m_server->serverPort());
QVERIFY(m_client->waitForConnected());
- QVERIFY(m_server->waitForNewConnection(5000));
+ QVERIFY(m_server->waitForNewConnection(10000));
m_serverConn = m_server->nextPendingConnection();
}