gstreamer/ci/scripts/test.sh
Jordan Petridis a80fef34a2 ci/scripts: Specify arguments by args rather than env vars
This dehardcodes the builddir the scripts use, and allows
us to pass it as a cli argument.

It also allows us to pass the test stuite string as an
arg for test.sh

This makes the scripts a bit more usable for local development
as well.

Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7114>
2024-07-04 15:07:28 +03:00

33 lines
726 B
Bash
Executable file

#! /bin/bash
builddir="$1"
tests="$2"
if [[ -z "$builddir" || -z "$tests" ]]; then
echo "Usage: test.sh <build_directory> <test_name>"
exit 1
fi
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 $tests"
./gst-env.py \
"--builddir=$builddir" \
gst-validate-launcher "$tests" \
--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