mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-12-30 15:31:34 +00:00
c4dfacc404
Otherwise we're going to run the accessibility test suite, and it's going to fail.
12 lines
195 B
Bash
Executable File
12 lines
195 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
builddir=$1
|
|
|
|
cd ${builddir}
|
|
xvfb-run -a -s "-screen 0 1024x768x24" \
|
|
meson test --print-errorlogs \
|
|
--suite=gtk \
|
|
--no-suite=gtk:a11y
|