tests: Ignore more libEGL warnings

This commit is contained in:
Florian Bruhin 2025-05-08 10:17:03 +02:00
parent 81f65dbb46
commit c682ccb1b2
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)