Ignore OnDidStopLoading error message

See #3661, https://bugreports.qt.io/browse/QTBUG-66661
This commit is contained in:
Florian Bruhin 2018-03-19 12:13:10 +01:00
parent f28a39571c
commit 6a971e2846

View File

@ -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)