summaryrefslogtreecommitdiffstats
path: root/cmake/QtTestHelpers.cmake
diff options
context:
space:
mode:
authorToni Saario <[email protected]>2024-10-04 16:12:01 +0300
committerToni Saario <[email protected]>2024-10-10 15:23:32 +0300
commit5f48395929bdad956af464979b0f8d83d96f4ad4 (patch)
tree03542e046c573239b1a1aceaa2412c9e6aafe714 /cmake/QtTestHelpers.cmake
parent0806aee2bb355e54abcabe87a5fd97504f692ba9 (diff)
Coin: Disable test output timeout
Now that the ctest is not run as verbose the logging is significantly decreased and VxWorks will hit timeout on some tests. There are plenty of other timeouts that will be hit instead before the total timeout specified for the command e.g. - Ctest timeout 25min default per test case. - Testlib timeout per test function 10min default. Change-Id: Ic02e812d4b059609553d2ac8d44ec91f358d76c5 Reviewed-by: Tor Arne Vestbø <[email protected]> Reviewed-by: Assam Boudjelthia <[email protected]>
Diffstat (limited to 'cmake/QtTestHelpers.cmake')
-rw-r--r--cmake/QtTestHelpers.cmake7
1 files changed, 1 insertions, 6 deletions
diff --git a/cmake/QtTestHelpers.cmake b/cmake/QtTestHelpers.cmake
index 5bcbc60b598..7a0555e5ba0 100644
--- a/cmake/QtTestHelpers.cmake
+++ b/cmake/QtTestHelpers.cmake
@@ -883,12 +883,7 @@ endfunction()
function(qt_internal_get_android_test_timeout input_timeout percentage output_timeout_var)
set(actual_timeout "${input_timeout}")
if(NOT actual_timeout)
- # we have coin ci timeout set use that to avoid having the emulator killed
- # so we can at least get some logs from the android test runner.
- set(coin_timeout $ENV{COIN_COMMAND_OUTPUT_TIMEOUT})
- if(coin_timeout)
- set(actual_timeout "${coin_timeout}")
- elseif(DART_TESTING_TIMEOUT)
+ if(DART_TESTING_TIMEOUT)
# Related: https://gitlab.kitware.com/cmake/cmake/-/issues/20450
set(actual_timeout "${DART_TESTING_TIMEOUT}")
elseif(CTEST_TEST_TIMEOUT)