Home
last modified time | relevance | path

Searched refs:expected_stdout (Results 1 – 7 of 7) sorted by relevance

/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/servers/
Dgardeningserver_unittest.py91 … def _post_to_path(self, path, body=None, expected_stderr=None, expected_stdout=None, server=None): argument
95 …rt_outputs(self, handler.do_POST, expected_stderr=expected_stderr, expected_stdout=expected_stdout)
99expected_stdout = '== Begin XML Response ==\nMOCK output of child process\n== End XML Response ==\…
100 … self._post_to_path('/svnlog', expected_stderr=expected_stderr, expected_stdout=expected_stdout)
104 expected_stdout = '== Begin Response ==\n1\n== End Response ==\n'
114 …self._post_to_path('/lastroll', expected_stderr=expected_stderr, expected_stdout='== Begin Respons…
115 …self._post_to_path('/lastroll', expected_stderr=expected_stderr, expected_stdout='== Begin Respons…
119 expected_stdout = "== Begin Response ==\nsuccess\n== End Response ==\n"
120 …2314&reason=MOCK+rollout+reason", expected_stderr=expected_stderr, expected_stdout=expected_stdout)
124 expected_stdout = "== Begin Response ==\nsuccess\n== End Response ==\n"
[all …]
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/
Dcommandtest.py35 …def assert_execute_outputs(self, command, args=[], expected_stdout="", expected_stderr="", expecte… argument
49 …assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout, expe…
Dqueries_unittest.py42 def run_test(self, tests, expected_stdout, platform='test-win-xp', **args): argument
56 self.assertMultiLineEqual(stdout, expected_stdout)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
Doutputcapture.py88 …def assert_outputs(self, testcase, function, args=[], kwargs={}, expected_stdout="", expected_stde… argument
103 testassert(stdout_string, expected_stdout)
125 def assertStdout(self, expected_stdout): argument
126 self.assertEqual(expected_stdout, self.__captured_stdout.getvalue())
Duser_unittest.py64expected_stdout="title\n\nsubtitle1\n 1. foo\n 2. bar\n\nsubtitle2\n 3. foobar\n 4. barbaz\n 5. fo…
94 expected_stdout="title\n 1. foo\n 2. bar\n")
138 …output.assert_outputs(self, user._warn_if_application_is_xcode, ["Xcode"], expected_stdout=xcode_w…
139 …warn_if_application_is_xcode, ["/Developer/Applications/Xcode.app"], expected_stdout=xcode_warning)
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/
Dmulticommandtool_unittest.py124 …def _assert_tool_main_outputs(self, tool, main_args, expected_stdout, expected_stderr = "", expect… argument
125 …OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expe…
/external/chromium_org/tools/gyp/test/lib/
DTestCommon.py408 def _complete(self, actual_stdout, expected_stdout, argument
424 if not expected_stdout is None and not match(actual_stdout, expected_stdout):
425 self.diff(expected_stdout, actual_stdout, 'STDOUT ')