Home | History | Annotate | Download | only in test

Lines Matching full:output

64     FLAG_PREFIX + r'output=.*' +
74 the exit code and the text output as a tuple.
84 return child.exit_code, child.output
94 exit_code, output = RunWithFlag(flag)
96 self.assert_(HELP_REGEX.search(output), output)
98 self.assert_(CATCH_EXCEPTIONS_FLAG in output, output)
99 self.assert_(DEATH_TEST_STYLE_FLAG not in output, output)
101 self.assert_(CATCH_EXCEPTIONS_FLAG not in output, output)
102 self.assert_(DEATH_TEST_STYLE_FLAG in output, output)
120 exit_code, output = RunWithFlag(None)
122 self.assert_(not HELP_REGEX.search(output), output)