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
This commit is contained in:
Ralf Habacker 2021-12-06 17:01:01 +01:00
parent 475a4b78a7
commit 19d6954b05

View file

@ -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
;;