forked from AuroraMiddleware/gtk
65c3f532cf
This runs the tests in testsuite/{css,gtk,tools} All others suites have failing tests and need more work.
18 lines
376 B
Bash
Executable File
18 lines
376 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
pwd
|
|
meson -Denable-x11-backend=true -Denable-wayland-backend=true \
|
|
-Denable-broadway-backend=true -Denable-vulkan=yes _build_full
|
|
cd _build_full
|
|
ninja
|
|
|
|
xvfb-run -a -s "-screen 0 1024x768x24" \
|
|
meson test \
|
|
--print-errorlogs \
|
|
--suite=gtk+ \
|
|
--no-suite=gtk+:gdk \
|
|
--no-suite=gtk+:gsk \
|
|
--no-suite=gtk+:a11y
|