ci: Always pass --timeout-multiplier 4 to meson test. Fixes #1393

Sometimes the CI machines are a bit slow and tests time out. This should help.
This commit is contained in:
Christoph Reiter 2018-05-26 16:31:29 +02:00
parent 00178f8c8e
commit ebdc7f4daf
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ fedora-meson-x86_64:
- meson --prefix /usr --libdir /usr/lib64 --buildtype debug --werror -Dsystemtap=true -Ddtrace=true _build .
- cd _build
- ninja
- meson test --timeout-multiplier 2
- meson test --timeout-multiplier 4
- cd ..
- mkdir -p _coverage
- lcov --rc lcov_branch_coverage=1 --directory . --capture --no-external --output-file "_coverage/${CI_JOB_NAME}.lcov"

View File

@ -35,7 +35,7 @@ cd _build
ninja
# FIXME: fix the test suite
meson test || true
meson test --timeout-multiplier 4 || true
cd ..
curl -O -J -L "https://github.com/linux-test-project/lcov/releases/download/v1.13/lcov-1.13.tar.gz"