Ignore Mach IPC message
This commit is contained in:
parent
c62e748b7b
commit
2538fec0c5
@ -135,6 +135,11 @@ def is_ignored_chromium_message(line):
|
||||
# [5947:5947:0605/192837.856931:ERROR:render_process_impl.cc(112)]
|
||||
# WebFrame LEAKED 1 TIMES
|
||||
'WebFrame LEAKED 1 TIMES',
|
||||
|
||||
# macOS on Travis
|
||||
# [5140:5379:0911/063441.239771:ERROR:mach_port_broker.mm(175)]
|
||||
# Unknown process 5176 is sending Mach IPC messages!
|
||||
'Unknown process * is sending Mach IPC messages!',
|
||||
]
|
||||
return any(testutils.pattern_match(pattern=pattern, value=message)
|
||||
for pattern in ignored_messages)
|
||||
|
Loading…
Reference in New Issue
Block a user