From fcf71441cf4627ac35479a70cbccad7a426c85e4 Mon Sep 17 00:00:00 2001 From: Dmitry Shachnev Date: Thu, 18 Jun 2026 14:20:38 +0300 Subject: [PATCH] tst_qqmldebugjs: increase some timeouts Forwarded: no Last-Update: 2026-01-02 Gbp-Pq: Name increase_timeouts.patch --- tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp b/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp index 5d0088c59..70c77e3e7 100644 --- a/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp +++ b/tests/auto/qml/debugger/qqmldebugjs/tst_qqmldebugjs.cpp @@ -479,7 +479,7 @@ void tst_QQmlDebugJS::setBreakpointInJavaScript() QProcess process; process.start(QStringLiteral(TESTBINDIR "/qmlscene"), { testFile(QUITINJS_QMLFILE) }); - QTRY_COMPARE(process.state(), QProcess::NotRunning); + QTRY_COMPARE_WITH_TIMEOUT(process.state(), QProcess::NotRunning, 10000); } QCOMPARE(init(qmlscene, QUITINJS_QMLFILE), ConnectSuccess); @@ -1012,7 +1012,7 @@ void tst_QQmlDebugJS::breakOnAnchor() m_client->connect(); - QTRY_COMPARE(m_process->state(), QProcess::NotRunning); + QTRY_COMPARE_WITH_TIMEOUT(m_process->state(), QProcess::NotRunning, 10000); QCOMPARE(m_process->exitStatus(), QProcess::NormalExit); QCOMPARE(breaks, 2); -- 2.30.2