mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2024-11-06 01:16:17 +01:00
a8f56c5be1
Now that we're using TAP parsing, this will show subtest failures in details but without showing any logging error, that we'd still need to parse from actual logs.
17 lines
444 B
Bash
Executable File
17 lines
444 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
./.gitlab-ci/check-missing-install-tag.py _build
|
|
|
|
meson test -v \
|
|
-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 -v \
|
|
-C _build \
|
|
--timeout-multiplier "${MESON_TEST_TIMEOUT_MULTIPLIER}" \
|
|
"$@" --setup=unstable_tests --suite=failing --suite=flaky || true
|