From 1f019715cf02711579e575763c1ad12e157fc450 Mon Sep 17 00:00:00 2001 From: Dimitrios Apostolou Date: Wed, 18 Oct 2023 14:58:17 +0200 Subject: [PATCH] Increase CTest timeout for tst_qmlformat MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit tst_qmlformat is a long test, and when we enable ASAN it usually runs dangerously close to the default of 1500s (25min). So double it. Pick-to: 6.6 6.5 Change-Id: I7e5566a28e3138fc5d667831406431f5fab50359 Reviewed-by: Tor Arne Vestbø Reviewed-by: Qt CI Bot --- tests/auto/qml/qmlformat/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/auto/qml/qmlformat/CMakeLists.txt b/tests/auto/qml/qmlformat/CMakeLists.txt index 557dc37b93..76923d66de 100644 --- a/tests/auto/qml/qmlformat/CMakeLists.txt +++ b/tests/auto/qml/qmlformat/CMakeLists.txt @@ -30,6 +30,7 @@ qt_internal_add_test(tst_qmlformat Qt::TestPrivate Qt::QuickTestUtilsPrivate TESTDATA ${test_data} + TIMEOUT 3000 ) add_dependencies(tst_qmlformat Qt::qmlformat)