summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-27 17:07:42 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-27 19:24:17 +0100
commitd75ffdc1155e0b0959aa2a9926f423637f107523 (patch)
tree6f124fb03bb6f6c5db2f5b17ee0c0646646791e1
parentf631cd4422744160d9dcf7a0455da532ce973315 (diff)
downloadqutebrowser-d75ffdc1155e0b0959aa2a9926f423637f107523.tar.gz
qutebrowser-d75ffdc1155e0b0959aa2a9926f423637f107523.zip
tests: Ignore DXVAVDA errors
-rw-r--r--tests/end2end/fixtures/quteprocess.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 5bf439347..4945dbc77 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -335,6 +335,10 @@ def is_ignored_chromium_message(line):
'Accepting maxRetransmits = -1 for backwards compatibility',
'Accepting maxRetransmitTime = -1 for backwards compatibility',
+ # Windows N:
+ # https://github.com/microsoft/playwright/issues/2901
+ (r'DXVAVDA fatal error: could not LoadLibrary: .*: The specified '
+ r'module could not be found. \(0x7E\)'),
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)