mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-10 11:26:16 +01:00
3d497b8f5b
It allows better debugging in case of failures.
17 lines
438 B
Bash
Executable File
17 lines
438 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
./.gitlab-ci/check-missing-install-tag.py _build
|
|
|
|
meson test \
|
|
-C _build \
|
|
--timeout-multiplier "${MESON_TEST_TIMEOUT_MULTIPLIER}" \
|
|
"$@"
|
|
|
|
# Run only the flaky tests, so we can log the failures but without hard failing
|
|
meson test \
|
|
-C _build \
|
|
--timeout-multiplier "${MESON_TEST_TIMEOUT_MULTIPLIER}" \
|
|
"$@" --setup=unstable_tests --suite=failing --suite=flaky || true
|