mutter/.gitlab-ci/run-tests.sh

30 lines
687 B
Bash
Raw Normal View History

#!/usr/bin/bash
set -e
dconf update
glib-compile-schemas $GSETTINGS_SCHEMA_DIR
# Disable e.g. audio support to not dead lock screen cast tests
rm -f /usr/share/pipewire/media-session.d/with-*
PIPEWIRE_DEBUG=2 PIPEWIRE_LOG="$CI_PROJECT_DIR/build/meson-logs/pipewire.log" \
pipewire &
sleep 2
export MUTTER_DEBUG_DUMMY_MODE_SPECS="800x600@10.0"
xvfb-run -s '+iglx -noreset' \
meson test -C build --no-rebuild -t 10 --wrap catchsegv
exit_code=$?
python3 .gitlab-ci/meson-junit-report.py \
--project-name=mutter \
--job-id "${CI_JOB_NAME}" \
--output "build/${CI_JOB_NAME}-report.xml" \
build/meson-logs/testlog-catchsegv.json
exit $exit_code