summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSona Kurazyan <sona.kurazyan@qt.io>2022-06-09 20:16:26 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2022-06-10 13:06:17 +0000
commit549ba758de86f857635070a80ac3a513ce51bac9 (patch)
tree0d56cc2a568fc99bda2a6b7510756da654bb7955
parent4c3c5ecc0e62d26e37f3e3018b22fdd11823a93d (diff)
tst_restart: increase waiting timeout in test
Targeting to 6.4 directly, as this is a release blocker. Will pick to 6.2 and 5.15 manually. Fixes: QTBUG-104098 Change-Id: I4c452cd7a5b36a54e4fcc52afecbb930be9827f1 Reviewed-by: MÃ¥rten Nordheim <marten.nordheim@qt.io> (cherry picked from commit 0f6ec405cf7d4dcc1adf4c8947d78417de69a5ee) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--tests/auto/restart/client/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/restart/client/main.cpp b/tests/auto/restart/client/main.cpp
index c520131..b4a30a9 100644
--- a/tests/auto/restart/client/main.cpp
+++ b/tests/auto/restart/client/main.cpp
@@ -78,7 +78,7 @@ private Q_SLOTS:
QVERIFY(reply.waitForFinished());
QSignalSpy advanceSpy(m_rep.data(), SIGNAL(advance()));
- QVERIFY(advanceSpy.wait());
+ QVERIFY(advanceSpy.wait(15000));
if (objectMode == QLatin1String("ObjectPointer")) {
QVERIFY(m_rep->subClass() != nullptr);
QCOMPARE(m_rep->subClass()->myPOD(), initialValue);