Ignore new Qt 5.10 debug build messages
This commit is contained in:
parent
e89fda189a
commit
8acd014d39
@ -105,6 +105,12 @@ def is_ignored_lowlevel_message(message):
|
|||||||
elif (message.startswith('QNetworkProxyFactory: factory 0x') and
|
elif (message.startswith('QNetworkProxyFactory: factory 0x') and
|
||||||
message.endswith(' has returned an empty result set')):
|
message.endswith(' has returned an empty result set')):
|
||||||
return True
|
return True
|
||||||
|
elif message == ' Error: No such file or directory':
|
||||||
|
# Qt 5.10 with debug Chromium
|
||||||
|
# [1016/155149.941048:WARNING:stack_trace_posix.cc(625)] Failed to open
|
||||||
|
# file: /home/florian/#14687139 (deleted)
|
||||||
|
# Error: No such file or directory
|
||||||
|
return True
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
|
||||||
@ -170,6 +176,12 @@ def is_ignored_chromium_message(line):
|
|||||||
# WebFrame LEAKED 1 TIMES
|
# WebFrame LEAKED 1 TIMES
|
||||||
'WebFrame LEAKED 1 TIMES',
|
'WebFrame LEAKED 1 TIMES',
|
||||||
|
|
||||||
|
# Qt 5.10 with debug Chromium
|
||||||
|
# [1016/155149.941048:WARNING:stack_trace_posix.cc(625)] Failed to open
|
||||||
|
# file: /home/florian/#14687139 (deleted)
|
||||||
|
# Error: No such file or directory
|
||||||
|
'Failed to open file: * (deleted)',
|
||||||
|
|
||||||
# macOS on Travis
|
# macOS on Travis
|
||||||
# [5140:5379:0911/063441.239771:ERROR:mach_port_broker.mm(175)]
|
# [5140:5379:0911/063441.239771:ERROR:mach_port_broker.mm(175)]
|
||||||
# Unknown process 5176 is sending Mach IPC messages!
|
# Unknown process 5176 is sending Mach IPC messages!
|
||||||
|
Loading…
Reference in New Issue
Block a user