Ignore Mach IPC message

This commit is contained in:
Florian Bruhin 2017-09-11 08:34:44 +02:00
parent c62e748b7b
commit 2538fec0c5

View File

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