summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2020-04-17 17:34:46 +0200
committerFlorian Bruhin <me@the-compiler.org>2020-04-17 17:34:46 +0200
commitceb1465bd300ceba6e4c6a7c601b3c1f76e5de1b (patch)
treec26128f39fbbd7c301e78145912699acffaf0456
parentd703c075092f1f4dddcf642efbc22ef8e7548768 (diff)
downloadqutebrowser-ceb1465bd300ceba6e4c6a7c601b3c1f76e5de1b.tar.gz
qutebrowser-ceb1465bd300ceba6e4c6a7c601b3c1f76e5de1b.zip
Ignore another Chromium error
-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 6222f3a6a..5f8263334 100644
--- a/tests/end2end/fixtures/quteprocess.py
+++ b/tests/end2end/fixtures/quteprocess.py
@@ -279,6 +279,12 @@ def is_ignored_chromium_message(line):
# https://bugreports.qt.io/browse/QTBUG-78319
'temp file failure: * : could not create temporary file: No such file '
'or directory (2)',
+
+ # Travis
+ # test_ssl_error_with_contentssl_strict__true
+ # [5306:5324:0417/151739.362362:ERROR:address_tracker_linux.cc(171)]
+ # Could not bind NETLINK socket: Address already in use (98)
+ 'Could not bind NETLINK socket: Address already in use (98)',
]
return any(testutils.pattern_match(pattern=pattern, value=message)
for pattern in ignored_messages)