Ignore OnDidStopLoading error message
See #3661, https://bugreports.qt.io/browse/QTBUG-66661
This commit is contained in:
parent
f28a39571c
commit
6a971e2846
@ -195,6 +195,11 @@ def is_ignored_chromium_message(line):
|
|||||||
# [2734:2746:1107/131154.072032:ERROR:nss_ocsp.cc(591)] No
|
# [2734:2746:1107/131154.072032:ERROR:nss_ocsp.cc(591)] No
|
||||||
# URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com
|
# URLRequestContext for NSS HTTP handler. host: ocsp.digicert.com
|
||||||
'No URLRequestContext for NSS HTTP handler. host: *',
|
'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)
|
return any(testutils.pattern_match(pattern=pattern, value=message)
|
||||||
for pattern in ignored_messages)
|
for pattern in ignored_messages)
|
||||||
|
Loading…
Reference in New Issue
Block a user