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-09-25 16:59:56 +0200
commit01883a7ec4cff3e2986f3155d3b14472d0c98344 (patch)
tree58c179980a17307d70f100afbcf34eff8e54e53a
parent037333e09eecd59ecfff759036fbb9015d7a1c35 (diff)
downloadqutebrowser-01883a7ec4cff3e2986f3155d3b14472d0c98344.tar.gz
qutebrowser-01883a7ec4cff3e2986f3155d3b14472d0c98344.zip
tests: Ignore another spurious libva error
-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)