From fe50011ddb35077c0d4cc2b31d56f8dd1376d5a2 Mon Sep 17 00:00:00 2001 From: Daniel Stone Date: Thu, 7 Nov 2024 14:52:41 +0000 Subject: [PATCH] build: Don't run wayland-protocols tests There's not too much point in running tests in general, but also specifically for wayland-protocols, which requires a newer wayland-scanner to run the tests (for DTD validation) but not to parse the protocol files. Signed-off-by: Daniel Stone Fixes: cdef622a0a2b ("meson: Update wayland-protocols to 1.38") Closes: mesa#12126 Part-of: --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index bdae2527da6..dbfcf89137f 100644 --- a/meson.build +++ b/meson.build @@ -2019,7 +2019,7 @@ if with_platform_wayland else wl_scanner_arg = 'code' endif - dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.38') + dep_wl_protocols = dependency('wayland-protocols', version : '>= 1.38', default_options: [ 'tests=false' ]) dep_wayland_client = dependency('wayland-client', version : '>=1.18') dep_wayland_server = dependency('wayland-server', version : '>=1.18') if with_egl