From 1ad6b68d33faecc236e26cc4df6d86f13d812b9b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 10 Jan 2024 14:33:26 +0100 Subject: tests: Ignore yet another mesa (?) warning As shown in detail by toofar in dff25d10bcc8a398a77ef260c33e51ec5c70f482, mesa 23.3 seems to trigger some new error messages. On my setup locally, it also triggers the warning that's ignored here. Why that's not the case on CI or for others is unclear to me, I gave up trying to understand graphics stuff on Linux. I'll just presume this is the same underlying cause, and refer to the commit message of the commit above for more details. --- tests/end2end/fixtures/quteprocess.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 0f7204115..98f7eff4d 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -74,6 +74,7 @@ def is_ignored_lowlevel_message(message): 'MESA: error: ZINK: vkCreateInstance failed (VK_ERROR_INCOMPATIBLE_DRIVER)', 'glx: failed to create drisw screen', 'failed to load driver: zink', + 'DRI3 not available', ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages) -- cgit v1.2.3-54-g00ecf