Searched refs:OutputCapture (Results 1 - 25 of 35) sorted by relevance

12

/external/webkit/Tools/Scripts/webkitpy/tool/bot/
H A Dsheriffircbot_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
51 OutputCapture().assert_outputs(self, run, args=["hi"], expected_stderr=expected_stderr)
55 OutputCapture().assert_outputs(self, run, args=["help"], expected_stderr=expected_stderr)
59 OutputCapture().assert_outputs(self, run, args=["last-green-revision"], expected_stderr=expected_stderr)
63 OutputCapture().assert_outputs(self, run, args=["rollout 21654 This patch broke the world"], expected_stderr=expected_stderr)
67 OutputCapture().assert_outputs(self, run, args=["rollout 21654 21655 21656 This 21654 patch broke the world"], expected_stderr=expected_stderr)
71 OutputCapture().assert_outputs(self, run, args=["rollout r21654 This patch broke the world"], expected_stderr=expected_stderr)
75 OutputCapture().assert_outputs(self, run, args=["rollout r21654 21655 r21656 This r21654 patch broke the world"], expected_stderr=expected_stderr)
79 OutputCapture().assert_outputs(self, run, args=["rollout bananas"], expected_stderr=expected_stderr)
85 OutputCapture()
[all...]
H A Dsheriff_unittest.py33 from webkitpy.common.system.outputcapture import OutputCapture namespace
90 OutputCapture().assert_outputs(self, run, expected_stderr=expected_stderr)
H A Dflakytestreporter_unittest.py33 from webkitpy.common.system.outputcapture import OutputCapture namespace
92 OutputCapture().assert_outputs(self, reporter._create_bug_for_flaky_test, ['foo/bar.html', ['test@test.com'], 'FLAKE_MESSAGE'], expected_stderr=expected_stderr)
146 OutputCapture().assert_outputs(self, reporter.report_flaky_tests, [patch, test_results, MockZipFile()], expected_stderr=expected_stderr)
H A Dfeeders_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
51 OutputCapture().assert_outputs(self, feeder.feed, expected_stderr=expected_stderr)
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dsuggestreviewers_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
39 OutputCapture().assert_outputs(self, step.run, [{}])
42 capture = OutputCapture()
H A Dupdatechangelogswithreview_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
37 capture = OutputCapture()
43 capture = OutputCapture()
H A Dclosebugforlanddiff_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
37 capture = OutputCapture()
H A Dpreparechangelog_unittest.py33 from webkitpy.common.system.outputcapture import OutputCapture namespace
40 capture = OutputCapture()
H A Dsteps_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
62 OutputCapture().assert_outputs(self, self._run_step, [Update, tool, options], expected_stderr=expected_stderr)
87 OutputCapture().assert_outputs(self, step.run, [{}], expected_stderr=expected_stderr)
H A Dvalidatechangelogs_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
49 result = OutputCapture().assert_outputs(self, step._check_changelog_diff, [diff_file], expected_stderr=expected_stderr)
H A Dvalidatereviewer_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
/external/webkit/Tools/Scripts/webkitpy/common/net/irc/
H A Dircproxy_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
43 OutputCapture().assert_outputs(self, fun, expected_stderr=expected_stderr)
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
H A Drebaseline_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
43 OutputCapture().assert_outputs(self, command._tests_to_update, [build])
H A Dcommandtest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
48 OutputCapture().assert_outputs(self, command.execute, [options, args, tool], expected_stdout=expected_stdout, expected_stderr=expected_stderr, expected_exception=expected_exception)
H A Dearlywarningsystem_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
49 OutputCapture().assert_outputs(self, queue._can_build, [], expected_stderr=expected_stderr)
56 OutputCapture().assert_outputs(self, queue._can_build, [], expected_stderr=expected_stderr)
69 OutputCapture().assert_outputs(self, queue.process_work_item, [mock_patch], expected_stderr=expected_stderr, expected_exception=ScriptError)
H A Dqueues_unittest.py35 from webkitpy.common.system.outputcapture import OutputCapture namespace
156 patch_id = OutputCapture().assert_outputs(self, queue._next_patch, [], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
316 OutputCapture().assert_outputs(self, sequence.run_and_handle_errors, [tool, options, state], expected_exception=TryAgain, expected_stderr=expected_stderr)
336 OutputCapture().assert_outputs(self, queue.process_work_item, [QueuesTest.mock_work_item], expected_stderr=expected_stderr)
379 OutputCapture().assert_outputs(self, queue.report_flaky_tests, [QueuesTest.mock_work_item, test_results, MockZipFile()], expected_stderr=expected_stderr)
421 OutputCapture().assert_outputs(self, queue._upload_results_archive_for_patch, [patch, Mock()], expected_stderr=expected_stderr)
H A Dqueuestest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
56 OutputCapture().assert_outputs(self,
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Dworkspace_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
57 archive = OutputCapture().assert_outputs(self, workspace.create_zip, ["/zip/path", "/source/path", MockZipFile], expected_stderr=expected_stderr)
H A Duser_unittest.py31 from webkitpy.common.system.outputcapture import OutputCapture namespace
58 output_capture = OutputCapture()
101 output = OutputCapture()
H A Doutputcapture.py35 class OutputCapture(object): class in inherits:object
73 self.output_capture = OutputCapture()
/external/webkit/Tools/Scripts/webkitpy/common/net/
H A Dlayouttestresults_unittest.py32 from webkitpy.common.system.outputcapture import OutputCapture namespace
88 failures = OutputCapture().assert_outputs(self, LayoutTestResults._failures_from_fail_row, [row])
94 OutputCapture().assert_outputs(self, LayoutTestResults._failures_from_fail_row, [row], expected_stderr=expected_stderr)
H A Dcredentials_unittest.py36 from webkitpy.common.system.outputcapture import OutputCapture namespace
100 outputCapture = OutputCapture()
110 OutputCapture().assert_outputs(self, credentials._run_security_tool, [username], expected_stderr=expected_stderr)
/external/webkit/Tools/Scripts/webkitpy/tool/
H A Dmulticommandtool_unittest.py34 from webkitpy.common.system.outputcapture import OutputCapture namespace
85 exit_code = OutputCapture().assert_outputs(self, two_required_arguments.check_arguments_and_execute, [None, ["foo"], TrivialTool()], expected_stderr=expected_missing_args_error)
125 exit_code = OutputCapture().assert_outputs(self, tool.main, [main_args], expected_stdout=expected_stdout, expected_stderr=expected_stderr)
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dchromium_win_unittest.py69 output = outputcapture.OutputCapture()
87 output = outputcapture.OutputCapture()
H A Dconfig_unittest.py108 oc = outputcapture.OutputCapture()
137 oc = outputcapture.OutputCapture()

Completed in 914 milliseconds

12