Lines Matching refs:expected_stdout
590 To mix in this class, subclasses need to provide expected_stdout as the
593 For expected_stdout, if it's True, then they expect something on stdout but
597 expected_stdout.search(status.stdout) to be true.
604 if self.expected_stdout is True:
607 elif type(self.expected_stdout) == str:
608 if self.expected_stdout != convert_to_unix_line_endings(status.stdout):
611 ac=status.stdout, ex=self.expected_stdout))
614 if not self.expected_stdout.search(converted):
617 ac=status.stdout, ex=self.expected_stdout.pattern))
658 To mix in this class, subclasses need to provide expected_stdout as the