Lines Matching refs:msg
131 msg = '+' + ' '.join(cmd) + '\n'
133 self.chained_file.write(msg)
134 self.logfile.write(self, msg)
358 def _note(self, note_type, msg, anchor=None): argument
376 self.f.write(self._escape(msg))
459 def error(self, msg): argument
469 self._note("error", msg)
471 def warning(self, msg): argument
481 self._note("warning", msg)
483 def info(self, msg): argument
493 self._note("info", msg)
495 def action(self, msg): argument
505 self._note("action", msg)
532 def status_pass(self, msg, anchor=None): argument
543 self._note("status-pass", msg, anchor)
545 def status_skipped(self, msg, anchor=None): argument
556 self._note("status-skipped", msg, anchor)
558 def status_xfail(self, msg, anchor=None): argument
569 self._note("status-xfail", msg, anchor)
571 def status_xpass(self, msg, anchor=None): argument
582 self._note("status-xpass", msg, anchor)
584 def status_fail(self, msg, anchor=None): argument
595 self._note("status-fail", msg, anchor)