def __call__(self, data): if 'component' in data and data['component'] == 'mozleak': # Output from mozleak requires that no prefix be added # so that mozharness will pick up these failures. return "%s\n" % data['message'] formatted = TbplFormatter.__call__(self, data) if data['action'] == 'process_output': return formatted return 'REFTEST %s' % formatted
def __call__(self, data): if "component" in data and data["component"] == "mozleak": # Output from mozleak requires that no prefix be added # so that mozharness will pick up these failures. return "%s\n" % data["message"] formatted = TbplFormatter.__call__(self, data) if formatted is None: return if data["action"] == "process_output": return formatted return "REFTEST %s" % formatted