summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-02-10 10:17:44 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-02-10 16:13:22 +0100
commited4f82217c1a11f05844ce892ada819a9e49cde6 (patch)
tree0ab684c1e47b622e86ec40983025981daf94efbe /tests/end2end/fixtures/quteprocess.py
parent822f99de50d09e993ed56c49bdc417148b1381f1 (diff)
downloadqutebrowser-ed4f82217c1a11f05844ce892ada819a9e49cde6.tar.gz
qutebrowser-ed4f82217c1a11f05844ce892ada819a9e49cde6.zip
tests: Ignore new Qt 5.15.3 warning
See #6147
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 4945dbc77..7d9d7c8c2 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -339,6 +339,9 @@ def is_ignored_chromium_message(line):
# https://github.com/microsoft/playwright/issues/2901
(r'DXVAVDA fatal error: could not LoadLibrary: .*: The specified '
r'module could not be found. \(0x7E\)'),
+
+ # Qt 5.15.3 dev build
+ r'Duplicate id found. Reassigning from \d+ to \d+',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)