summaryrefslogtreecommitdiff
path: root/tests/end2end
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2021-03-30 17:47:23 +0200
committerFlorian Bruhin <me@the-compiler.org>2021-03-31 13:10:09 +0200
commitaea69ff3dfb572370e6b0514950043bd2be4a864 (patch)
treeb00daf7e4fedac4f649c3f1bc8867853ae3b94f8 /tests/end2end
parent40c72f849d35cde1644558792845d93e3032ea93 (diff)
downloadqutebrowser-aea69ff3dfb572370e6b0514950043bd2be4a864.tar.gz
qutebrowser-aea69ff3dfb572370e6b0514950043bd2be4a864.zip
tests: Ignore mDNS errors
They happen with data/crashers/webrtc.html in Flatpak and are harmless.
Diffstat (limited to 'tests/end2end')
-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 ed12b86dc..0c0cfc50f 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -343,6 +343,10 @@ def is_ignored_chromium_message(line):
# Qt 5.15.3 dev build
r'Duplicate id found. Reassigning from * to *',
+
+ # Flatpak
+ 'mDNS responder manager failed to start.',
+ 'The mDNS responder manager is not started yet.',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)