mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2025-12-20 02:20:03 +01:00
This script does the same thing but has a few more toggles than our custom script which means we can set everything we need in the gitlab-ci.yml file and have it DTRT. Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1317>
30 lines
596 B
Bash
Executable file
30 lines
596 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
set -o xtrace
|
|
|
|
if [[ -z "$MESON_BUILDDIR" ]]; then
|
|
echo "\$MESON_BUILDDIR not set"
|
|
exit 1
|
|
fi
|
|
|
|
check_piglit_results ()
|
|
{
|
|
local EXPECTED_RESULTS="$MESON_BUILDDIR"/test/piglit-results/$1
|
|
local DEPENDENCY="$MESON_BUILDDIR"/$2
|
|
|
|
if ! test -e $DEPENDENCY; then
|
|
return
|
|
fi
|
|
|
|
if test -e $EXPECTED_RESULTS; then
|
|
return
|
|
fi
|
|
|
|
echo Expected $EXPECTED_RESULTS does not exist
|
|
exit 1
|
|
}
|
|
|
|
check_piglit_results xephyr-glamor hw/kdrive/ephyr/Xephyr.p/ephyr_glamor.c.o
|
|
check_piglit_results xvfb hw/vfb/Xvfb
|
|
check_piglit_results xwayland hw/xwayland/Xwayland
|