Adjust ignored log messages for Qt 5.11

This commit is contained in:
Florian Bruhin 2018-03-18 18:58:29 +01:00
parent f7074b80d0
commit 8a3d9c0c01

View File

@ -101,6 +101,9 @@ def is_ignored_lowlevel_message(message):
' Error: No such file or directory', ' Error: No such file or directory',
# Qt 5.7.1 # Qt 5.7.1
'qt.network.ssl: QSslSocket: cannot call unresolved function *', 'qt.network.ssl: QSslSocket: cannot call unresolved function *',
# Qt 5.11
# DevTools listening on ws://127.0.0.1:37945/devtools/browser/...
'DevTools listening on *',
] ]
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)
@ -169,7 +172,7 @@ def is_ignored_chromium_message(line):
# /tmp/pytest-of-florian/pytest-32/test_webengine_download_suffix0/ # /tmp/pytest-of-florian/pytest-32/test_webengine_download_suffix0/
# downloads/download.bin: Operation not supported # downloads/download.bin: Operation not supported
('Could not set extended attribute user.xdg.* on file *: ' ('Could not set extended attribute user.xdg.* on file *: '
'Operation not supported'), 'Operation not supported*'),
# [5947:5947:0605/192837.856931:ERROR:render_process_impl.cc(112)] # [5947:5947:0605/192837.856931:ERROR:render_process_impl.cc(112)]
# WebFrame LEAKED 1 TIMES # WebFrame LEAKED 1 TIMES
'WebFrame LEAKED 1 TIMES', 'WebFrame LEAKED 1 TIMES',