From 2e5442eef5da3032e389f2c3f4e822fa6f6ec817 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 14 Nov 2025 11:54:33 -0500 Subject: [PATCH] Tests/CMakeGUI: Avoid QtTest internal timeout before ctest's timeout Issue: #27376 --- Tests/CMakeGUI/CMakeGUITest.cmake | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Tests/CMakeGUI/CMakeGUITest.cmake b/Tests/CMakeGUI/CMakeGUITest.cmake index 9e2c8ccdb3..1049e31e4b 100644 --- a/Tests/CMakeGUI/CMakeGUITest.cmake +++ b/Tests/CMakeGUI/CMakeGUITest.cmake @@ -1,3 +1,6 @@ +# Avoid QtTest library timeouts before ctest's timeout. +set(ENV{QTEST_FUNCTION_TIMEOUT} 3600000) + function(run_cmake_gui_test name) if(DEFINED ENV{CMakeGUITest_TEST_FILTER} AND NOT name MATCHES "$ENV{CMakeGUITest_TEST_FILTER}") return()