summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2024-01-10 14:33:26 +0100
committerFlorian Bruhin <me@the-compiler.org>2024-01-10 14:33:26 +0100
commit1ad6b68d33faecc236e26cc4df6d86f13d812b9b (patch)
treeeb7c3dac02cfdce21331fd8f9fd9a6ab9ba12622
parenta2b81bee861fb3cc6a4d7dbcd289b16be7f27d3f (diff)
downloadqutebrowser-1ad6b68d33faecc236e26cc4df6d86f13d812b9b.tar.gz
qutebrowser-1ad6b68d33faecc236e26cc4df6d86f13d812b9b.zip
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.
-rw-r--r--tests/end2end/fixtures/quteprocess.py1
1 files changed, 1 insertions, 0 deletions
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)