tests: Ignore more libEGL warnings

This commit is contained in:
Florian Bruhin 2025-05-08 10:17:03 +02:00 committed by Chad Kouse
parent 88b0763884
commit fd51af9125
No known key found for this signature in database
GPG Key ID: 2BBC602A2578C7A2
1 changed files with 2 additions and 0 deletions

View File

@ -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)