summaryrefslogtreecommitdiff
path: root/tests/end2end/fixtures/quteprocess.py
diff options
context:
space:
mode:
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 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)