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-18 14:06:54 +0200
commit399c53a17beb83a5026984eeb504c0eb7b7edfe8 (patch)
tree1443baa07cd496deee0aa758b9fb102790f40a55
parent44370806d428ef3b9f6166cc2bf3d0c3ebdaaea5 (diff)
downloadqutebrowser-399c53a17beb83a5026984eeb504c0eb7b7edfe8.tar.gz
qutebrowser-399c53a17beb83a5026984eeb504c0eb7b7edfe8.zip
Ignore another Chromium error
(cherry picked from commit ceb1465bd300ceba6e4c6a7c601b3c1f76e5de1b)
-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)