summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-01-16 23:09:29 +0100
committerFlorian Bruhin <me@the-compiler.org>2021-01-16 23:14:14 +0100
commita17a2ad1738c2483bed6c24a4a15fcb8dfaf49f8 (patch)
tree809254b58c3a97405dbbba80091c5443f1da316e /tests/end2end/fixtures/quteprocess.py
parent94d42013f64a8504a56e6f5edb6688ad6d3a214f (diff)
downloadqutebrowser-a17a2ad1738c2483bed6c24a4a15fcb8dfaf49f8.tar.gz
qutebrowser-a17a2ad1738c2483bed6c24a4a15fcb8dfaf49f8.zip
tests: Fix WebRTC crasher on older Qt versions
Diffstat (limited to 'tests/end2end/fixtures/quteprocess.py')
-rw-r--r--tests/end2end/fixtures/quteprocess.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py
index 7d27e1166..780959d5a 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -329,6 +329,12 @@ def is_ignored_chromium_message(line):
'filtering (maybe)?'),
('[.DisplayCompositor]GL ERROR :GL_INVALID_OPERATION : '
'DoEndSharedImageAccessCHROMIUM: bound texture is not a shared image'),
+
+ # WebRTC with Qt 5.13 / 5.14
+ 'Failed to query stereo recording.',
+ 'Accepting maxRetransmits = -1 for backwards compatibility',
+ 'Accepting maxRetransmitTime = -1 for backwards compatibility',
+
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)