From 213a163623db8033a1b99b39dc737159d88ad18f Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 23 Aug 2024 21:44:10 +0200 Subject: [PATCH] test: Ignore new libEGL warnings Seem to fail all tests on Archlinux-unstable --- tests/end2end/fixtures/quteprocess.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index b1e4bbaab..0bb09e632 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -77,6 +77,10 @@ def is_ignored_lowlevel_message(message): 'DRI3 not available', # Webkit on arch with a newer mesa 'MESA: error: ZINK: failed to load libvulkan.so.1', + + # GitHub Actions with Archlinux unstable packages + 'libEGL warning: DRI3: Screen seems not DRI3 capable', + 'libEGL warning: egl: failed to create dri2 screen', ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)