Change log level at g_log_remove_handler
[platform/upstream/glib.git] / .gitlab-ci / run-tests.sh
1 #!/bin/bash
2
3 set -ex
4
5 ./.gitlab-ci/check-missing-install-tag.py _build
6
7 meson test -v \
8         -C _build \
9         --timeout-multiplier "${MESON_TEST_TIMEOUT_MULTIPLIER}" \
10         "$@"
11
12 # Run only the flaky tests, so we can log the failures but without hard failing
13 meson test -v \
14         -C _build \
15         --timeout-multiplier "${MESON_TEST_TIMEOUT_MULTIPLIER}" \
16         "$@" --setup=unstable_tests --suite=failing --suite=flaky || true