tests: Ignore another spurious libva error

This commit is contained in:
Florian Bruhin 2023-09-25 08:07:41 +02:00
parent 037333e09e
commit 01883a7ec4
1 changed files with 2 additions and 1 deletions

View File

@ -66,7 +66,8 @@ def is_ignored_lowlevel_message(message):
(
'libva error: vaGetDriverNameByIndex() failed with unknown libva error, '
'driver_name = (null)'
)
),
'libva error: vaGetDriverNames() failed with unknown libva error',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)