From 6a971e28468dbe3af963a4339a6002c0f9c0af0c Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Mon, 19 Mar 2018 12:13:10 +0100 Subject: [PATCH] Ignore OnDidStopLoading error message See #3661, https://bugreports.qt.io/browse/QTBUG-66661 --- tests/end2end/fixtures/quteprocess.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index acd5bcc0c..8e6db5164 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -195,6 +195,11 @@ def is_ignored_chromium_message(line): # [2734:2746:1107/131154.072032:ERROR:nss_ocsp.cc(591)] No # URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com 'No URLRequestContext for NSS HTTP handler. host: *', + + # https://bugreports.qt.io/browse/QTBUG-66661 + # [23359:23359:0319/115812.168578:WARNING:render_frame_host_impl.cc(2744)] + # OnDidStopLoading was called twice. + 'OnDidStopLoading was called twice.', ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)