2019-04-08 14:34:13 +02:00
|
|
|
#!/usr/bin/bash
|
|
|
|
|
2021-02-13 18:47:54 +01:00
|
|
|
set -e
|
2019-04-08 14:34:13 +02:00
|
|
|
|
|
|
|
dconf update
|
|
|
|
glib-compile-schemas $GSETTINGS_SCHEMA_DIR
|
|
|
|
|
2021-03-16 17:46:44 +01:00
|
|
|
# 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 &
|
2021-02-13 18:49:58 +01:00
|
|
|
|
|
|
|
sleep 2
|
|
|
|
|
2020-11-09 09:34:09 +01:00
|
|
|
export MUTTER_DEBUG_DUMMY_MODE_SPECS="800x600@10.0"
|
|
|
|
|
2021-02-13 18:46:13 +01:00
|
|
|
xvfb-run -s '+iglx -noreset' \
|
|
|
|
meson test -C build --no-rebuild -t 10 --wrap catchsegv
|
2019-04-08 14:34:13 +02:00
|
|
|
|
|
|
|
exit_code=$?
|
|
|
|
|
|
|
|
exit $exit_code
|