forked from AuroraMiddleware/gtk
feb7bf2fbe
xvfb doesn't like C.utf8 and returns XLocaleNotSupported. While (afaik) C.utf8 and C.UTF.8 should be the same thing, and the former is returned by locale -a on Fedora, switch to C.UTF-8 to make xvfb happy. This makes gtk+:gdk tests pass.
24 lines
373 B
Bash
Executable File
24 lines
373 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
srcdir=$(pwd)
|
|
|
|
meson \
|
|
-Dx11-backend=true \
|
|
-Dwayland-backend=true \
|
|
-Dbroadway-backend=true \
|
|
-Dvulkan=yes \
|
|
_build $srcdir
|
|
|
|
cd _build
|
|
|
|
ninja
|
|
|
|
xvfb-run -a -s "-screen 0 1024x768x24" \
|
|
meson test \
|
|
--print-errorlogs \
|
|
--suite=gtk+ \
|
|
--no-suite=gtk+:gsk \
|
|
--no-suite=gtk+:a11y
|