summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2023-09-25 08:07:41 +0200
committerFlorian Bruhin <me@the-compiler.org>2023-10-18 18:39:47 +0200
commit839017d3007b49990871aae876bb301aa2702e3a (patch)
tree19310f2709e15c49858236d4448fdc9d0d00d872
parentfabbe99c34c30f3d9a29e629af3387da6c749c5d (diff)
downloadqutebrowser-839017d3007b49990871aae876bb301aa2702e3a.tar.gz
qutebrowser-839017d3007b49990871aae876bb301aa2702e3a.zip
tests: Ignore another spurious libva error
(cherry picked from commit 01883a7ec4cff3e2986f3155d3b14472d0c98344)
-rw-r--r--tests/end2end/fixtures/quteprocess.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 9a093bba8..a2f870e32 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -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)