From 0498e042a04430fe16a3129f756d7aab380a445b Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Wed, 13 Sep 2017 17:24:02 +0200 Subject: [PATCH] Ignore another macOS log line --- tests/end2end/fixtures/quteprocess.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/end2end/fixtures/quteprocess.py b/tests/end2end/fixtures/quteprocess.py index 60cc61222..38246ca91 100644 --- a/tests/end2end/fixtures/quteprocess.py +++ b/tests/end2end/fixtures/quteprocess.py @@ -147,6 +147,10 @@ def is_ignored_chromium_message(line): # [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!', + # [5205:44547:0913/142945.003625:ERROR:node_controller.cc(1268)] Error + # on receiving Mach ports FFA56F125F699ADB.E28E252911A8704B. Dropping + # message. + 'Error on receiving Mach ports *. Dropping message.', ] return any(testutils.pattern_match(pattern=pattern, value=message) for pattern in ignored_messages)