From fd51af91253740498a4c5bf2908644e7052deaf4 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Thu, 8 May 2025 10:17:03 +0200 Subject: [PATCH] tests: Ignore more libEGL warnings --- tests/end2end/fixtures/quteprocess.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 7d2856fb7..f36cc2c8e 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -83,6 +83,8 @@ def is_ignored_lowlevel_message(message): # GitHub Actions with Archlinux unstable packages 'libEGL warning: DRI3: Screen seems not DRI3 capable', 'libEGL warning: egl: failed to create dri2 screen', + 'libEGL warning: DRI3 error: Could not get DRI3 device', + 'libEGL warning: Activate DRI3 at Xorg or build mesa with DRI2', ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)