From: Dylan Baker Date: Fri, 20 Sep 2019 20:09:54 +0000 (-0700) Subject: meson: glcpp tests are expected to fail on windows X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09d21b554aee2bd60b7b50b0da895e37c4ea683a;p=mesa.git meson: glcpp tests are expected to fail on windows v2: - Exclude the tests rather than xfail them Acked-by: Kristian H. Kristensen --- diff --git a/src/compiler/glsl/glcpp/meson.build b/src/compiler/glsl/glcpp/meson.build index 28c836381e4..89b17c504cc 100644 --- a/src/compiler/glsl/glcpp/meson.build +++ b/src/compiler/glsl/glcpp/meson.build @@ -65,7 +65,8 @@ glcpp = executable( build_by_default : false, ) -if with_any_opengl and with_tests +# FIXME: these fail on windows due to whitespace differences +if with_any_opengl and with_tests and host_machine.system() != 'windows' modes = ['unix', 'windows', 'oldmac', 'bizarro'] if dep_valgrind.found() modes += ['valgrind']