mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
24 lines
571 B
Bash
Executable file
24 lines
571 B
Bash
Executable file
#! /bin/bash
|
|
|
|
set -eux
|
|
|
|
timeout="${TIMEOUT_FACTOR:="2"}"
|
|
validate="${EXTRA_VALIDATE_ARGS:=""}"
|
|
parent="${CI_PROJECT_DIR:-$(pwd)}"
|
|
|
|
export XDG_RUNTIME_DIR="$(mktemp -p $(pwd) -d xdg-runtime-XXXXXX)"
|
|
echo "-> Running ${TEST_SUITE}"
|
|
|
|
./gst-env.py \
|
|
gst-validate-launcher ${TEST_SUITE} \
|
|
--check-bugs \
|
|
--dump-on-failure \
|
|
--mute \
|
|
--shuffle \
|
|
--no-display \
|
|
--meson-no-rebuild \
|
|
--timeout-factor "$timeout" \
|
|
--fail-on-testlist-change \
|
|
-l "$parent/validate-logs/" \
|
|
--xunit-file "$parent/validate-logs/xunit.xml" \
|
|
$validate
|