Changeset 98687 in webkit
- Timestamp:
- Oct 27, 2011, 9:55:21 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 7 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/common/config/ports.py (modified) (1 diff)
-
Scripts/webkitpy/tool/commands/download_unittest.py (modified) (7 diffs)
-
Scripts/webkitpy/tool/mocktool.py (modified) (1 diff)
-
Scripts/webkitpy/tool/steps/runtests.py (modified) (1 diff)
-
Scripts/webkitpy/tool/steps/runtests_unittest.py (modified) (1 diff)
-
Scripts/webkitpy/tool/steps/steps_unittest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r98682 r98687 1 2011-10-27 Adam Barth <abarth@webkit.org> 2 3 Dis-integrate run-bindings-tests with webkitpy 4 https://bugs.webkit.org/show_bug.cgi?id=71092 5 6 Reviewed by Ryosuke Niwa. 7 8 These tests aren't really adding any value. 9 10 * Scripts/webkitpy/common/config/ports.py: 11 * Scripts/webkitpy/tool/commands/download_unittest.py: 12 * Scripts/webkitpy/tool/mocktool.py: 13 * Scripts/webkitpy/tool/steps/runtests.py: 14 * Scripts/webkitpy/tool/steps/runtests_unittest.py: 15 * Scripts/webkitpy/tool/steps/steps_unittest.py: 16 1 17 2011-10-27 Eric Seidel <eric@webkit.org> 2 18 -
trunk/Tools/Scripts/webkitpy/common/config/ports.py
r90864 r98687 118 118 119 119 @classmethod 120 def run_bindings_tests_command(cls):121 return cls.script_shell_command("run-bindings-tests")122 123 @classmethod124 120 def layout_tests_results_path(cls): 125 121 return "/tmp/layout-test-results/results.html" -
trunk/Tools/Scripts/webkitpy/tool/commands/download_unittest.py
r97521 r98687 90 90 91 91 def test_build_and_test(self): 92 expected_stderr = "Updating working directory\nBuilding WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning Bindings tests\nRunningJavaScriptCore tests\nRunning run-webkit-tests\n"92 expected_stderr = "Updating working directory\nBuilding WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning JavaScriptCore tests\nRunning run-webkit-tests\n" 93 93 self.assert_execute_outputs(BuildAndTest(), [], options=self._default_options(), expected_stderr=expected_stderr) 94 94 … … 116 116 117 117 def test_land(self): 118 expected_stderr = "Building WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning Bindings tests\nRunningJavaScriptCore tests\nRunning run-webkit-tests\nCommitted r49824: <http://trac.webkit.org/changeset/49824>\nUpdating bug 50000\n"118 expected_stderr = "Building WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning JavaScriptCore tests\nRunning run-webkit-tests\nCommitted r49824: <http://trac.webkit.org/changeset/49824>\nUpdating bug 50000\n" 119 119 mock_tool = MockTool() 120 120 mock_tool.scm().create_patch = Mock(return_value="Patch1\nMockPatch\n") … … 137 137 Running Perl unit tests 138 138 MOCK run_and_throw_if_fail: ['mock-test-webkitperl'], cwd=/mock-checkout 139 Running Bindings tests140 MOCK run_and_throw_if_fail: ['mock-run-bindings-tests'], cwd=/mock-checkout141 139 Running JavaScriptCore tests 142 140 MOCK run_and_throw_if_fail: ['mock-run-javacriptcore-tests'], cwd=/mock-checkout … … 151 149 152 150 def test_land_red_builders(self): 153 expected_stderr = 'Building WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning Bindings tests\nRunningJavaScriptCore tests\nRunning run-webkit-tests\nCommitted r49824: <http://trac.webkit.org/changeset/49824>\nUpdating bug 50000\n'151 expected_stderr = 'Building WebKit\nRunning Python unit tests\nRunning Perl unit tests\nRunning JavaScriptCore tests\nRunning run-webkit-tests\nCommitted r49824: <http://trac.webkit.org/changeset/49824>\nUpdating bug 50000\n' 154 152 mock_tool = MockTool() 155 153 mock_tool.buildbot.light_tree_on_fire() … … 177 175 Running Python unit tests 178 176 Running Perl unit tests 179 Running Bindings tests180 177 Running JavaScriptCore tests 181 178 Running run-webkit-tests … … 194 191 Running Python unit tests 195 192 Running Perl unit tests 196 Running Bindings tests197 193 Running JavaScriptCore tests 198 194 Running run-webkit-tests … … 204 200 Running Python unit tests 205 201 Running Perl unit tests 206 Running Bindings tests207 202 Running JavaScriptCore tests 208 203 Running run-webkit-tests -
trunk/Tools/Scripts/webkitpy/tool/mocktool.py
r97515 r98687 785 785 return ["mock-build-webkit"] 786 786 787 def run_bindings_tests_command(self):788 return ["mock-run-bindings-tests"]789 790 787 def prepare_changelog_command(self): 791 788 return ['mock-prepare-ChangeLog'] -
trunk/Tools/Scripts/webkitpy/tool/steps/runtests.py
r91210 r98687 57 57 self._tool.executive.run_and_throw_if_fail(perl_unittests_command, cwd=self._tool.scm().checkout_root) 58 58 59 bindings_tests_command = self._tool.port().run_bindings_tests_command()60 if bindings_tests_command:61 log("Running Bindings tests")62 self._tool.executive.run_and_throw_if_fail(bindings_tests_command, cwd=self._tool.scm().checkout_root)63 64 59 javascriptcore_tests_command = self._tool.port().run_javascriptcore_tests_command() 65 60 if javascriptcore_tests_command: -
trunk/Tools/Scripts/webkitpy/tool/steps/runtests_unittest.py
r89289 r98687 39 39 tool._port.run_perl_unittests_command = lambda: None 40 40 step = RunTests(tool, MockOptions(test=True, non_interactive=True, quiet=False)) 41 expected_stderr = """Running Bindings tests 42 Running JavaScriptCore tests 41 expected_stderr = """Running JavaScriptCore tests 43 42 Running run-webkit-tests 44 43 """ -
trunk/Tools/Scripts/webkitpy/tool/steps/steps_unittest.py
r95543 r98687 80 80 Running Perl unit tests 81 81 MOCK run_and_throw_if_fail: ['Tools/Scripts/test-webkitperl'], cwd=/mock-checkout 82 Running Bindings tests83 MOCK run_and_throw_if_fail: ['Tools/Scripts/run-bindings-tests'], cwd=/mock-checkout84 82 Running JavaScriptCore tests 85 83 MOCK run_and_throw_if_fail: ['Tools/Scripts/run-javascriptcore-tests'], cwd=/mock-checkout
Note:
See TracChangeset
for help on using the changeset viewer.