diff options
author | merge-script <fanquake@gmail.com> | 2024-10-08 15:24:48 +0100 |
---|---|---|
committer | merge-script <fanquake@gmail.com> | 2024-10-08 15:24:48 +0100 |
commit | 3fecf36c7b3d51a07f2f1b3df2e60b7bec71108d (patch) | |
tree | 0d839d60ea60a4d5978d6032dfb16f4453f18d1a | |
parent | 3c4a9419dbe539c280c101e4e81c0c83c38383e6 (diff) | |
parent | fa5ebc99207fb3dc9d052fbd489aa7abbaaf737f (diff) |
Merge bitcoin/bitcoin#31056: ci: Double ctest timeout
fa5ebc99207fb3dc9d052fbd489aa7abbaaf737f ci: Double ctest timeout (MarcoFalke)
Pull request description:
It looks like msan sometimes hits the timeout. So double it, which should still be useful to catch real timeouts in the wine windows-cross unit tests.
Example: https://cirrus-ci.com/task/5141974322249728
ACKs for top commit:
fanquake:
ACK fa5ebc99207fb3dc9d052fbd489aa7abbaaf737f
Tree-SHA512: de346f34c4d157be515706fd71c2072fb5859d50d0e8cd7e6c4637578e4dc54aa8c75b2521e7aecf679b486c4e20fd184e259ffc701b8b668d7f61abff883875
-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 |