From 6eb3fe2d4fa2c42d7ee1e20b390b3117a8980eaf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Ol=C5=A1=C3=A1k?= Date: Sat, 11 Dec 2021 14:21:40 -0500 Subject: [PATCH] nir: disable a NIR test due to undebuggable & locally unreproducible CI failures debian-vulkan but not any other CI pipeline consistently fails with: FileNotFoundError: [Errno 2] No such file or directory: 'nir_tests.xml' I have to assume that either debian-vulkan is broken, or the NIR test infrastructure is broken. That's not all. I got the same failure when I wanted to add a new test, which means the CI is preventing us from adding new NIR tests, which is a very serious problem with the CI or NIR tests. The python error doesn't imply that it's a test failure, so something else is broken. If you don't want such commits to happen again, print better error messages. See also the discussion in the MR. Part-of: --- src/compiler/nir/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/nir/meson.build b/src/compiler/nir/meson.build index 720a8e15d5f..da7ece78e74 100644 --- a/src/compiler/nir/meson.build +++ b/src/compiler/nir/meson.build @@ -385,7 +385,7 @@ if with_tests 'tests/lower_returns_tests.cpp', 'tests/negative_equal_tests.cpp', 'tests/opt_if_tests.cpp', - 'tests/serialize_tests.cpp', + #'tests/serialize_tests.cpp', 'tests/ssa_def_bits_used_tests.cpp', 'tests/vars_tests.cpp', ),