summaryrefslogtreecommitdiff
path: root/.gitlab-ci/run-tests.sh
blob: 1189493ba6ad1fc6fdc41d4d4bdc9d95436dd3f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/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