From: Ralf Habacker Date: Mon, 6 Dec 2021 16:01:01 +0000 (+0100) Subject: tools/ci-build.sh: Double maximum test time when running tests on Windows X-Git-Tag: dbus-1.13.20~16^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=19d6954b0595a991cf7b9fe256072205c917f53d;p=thirdparty%2Fdbus.git tools/ci-build.sh: Double maximum test time when running tests on Windows The currently timeout of 60 seconds is too short for test-dbus-daemon on Windows, depending on the load of the CI system. Fixes #359 --- diff --git a/tools/ci-build.sh b/tools/ci-build.sh index 856a65a8a..8348349c1 100755 --- a/tools/ci-build.sh +++ b/tools/ci-build.sh @@ -390,6 +390,8 @@ case "$ci_buildsys" in fi if [ "$ci_test" = yes ]; then set "$@" -D DBUS_USE_WINE=1 + # test-dbus-daemon needs more time on Windows + export DBUS_TEST_TIMEOUT_MULTIPLIER=2 fi shift ;;