diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-10-08 10:46:41 +0200 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2024-10-08 10:39:05 +0200 |
commit | fa5ebc99207fb3dc9d052fbd489aa7abbaaf737f (patch) | |
tree | 1de0556f633ca9cf66b88e80d502a76d955092a7 /ci/test | |
parent | 62e4516722115c2d5aeb6c197abc73ca7c078b23 (diff) |
ci: Double ctest timeout
Diffstat (limited to 'ci/test')
-rwxr-xr-x | ci/test/03_test_script.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ci/test/03_test_script.sh b/ci/test/03_test_script.sh index 9cc0e8e864..12fb028e0a 100755 --- a/ci/test/03_test_script.sh +++ b/ci/test/03_test_script.sh @@ -146,7 +146,7 @@ if [ "$RUN_CHECK_DEPS" = "true" ]; then fi if [ "$RUN_UNIT_TESTS" = "true" ]; then - DIR_UNIT_TEST_DATA="${DIR_UNIT_TEST_DATA}" LD_LIBRARY_PATH="${DEPENDS_DIR}/${HOST}/lib" CTEST_OUTPUT_ON_FAILURE=ON ctest "${MAKEJOBS}" --timeout $((TEST_RUNNER_TIMEOUT_FACTOR * 30 )) + DIR_UNIT_TEST_DATA="${DIR_UNIT_TEST_DATA}" LD_LIBRARY_PATH="${DEPENDS_DIR}/${HOST}/lib" CTEST_OUTPUT_ON_FAILURE=ON ctest "${MAKEJOBS}" --timeout $(( TEST_RUNNER_TIMEOUT_FACTOR * 60 )) fi if [ "$RUN_UNIT_TESTS_SEQUENTIAL" = "true" ]; then |