From 399c53a17beb83a5026984eeb504c0eb7b7edfe8 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Fri, 17 Apr 2020 17:34:46 +0200 Subject: Ignore another Chromium error (cherry picked from commit ceb1465bd300ceba6e4c6a7c601b3c1f76e5de1b) --- tests/end2end/fixtures/quteprocess.py | 6 ++++++ 1 file changed, 6 insertions(+) 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) -- cgit v1.2.3-54-g00ecf