Changeset 90201 in webkit
- Timestamp:
- Jun 30, 2011, 8:31:51 PM (15 years ago)
- Location:
- trunk/Tools
- Files:
-
- 3 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/port/webkit.py (modified) (1 diff)
-
Scripts/webkitpy/layout_tests/port/webkit_unittest.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r90197 r90201 1 2011-06-30 Eric Seidel <eric@webkit.org> 2 3 Reviewed by Adam Barth. 4 5 Update new-run-webkit-tests now that the wk2 shared skipped list has moved 6 https://bugs.webkit.org/show_bug.cgi?id=63780 7 8 The shared list was moved from mac-wk2 to wk2 as part of 9 http://trac.webkit.org/changeset/90125. 10 11 * Scripts/webkitpy/layout_tests/port/webkit.py: 12 * Scripts/webkitpy/layout_tests/port/webkit_unittest.py: 13 1 14 2011-06-30 Kenichi Ishibashi <bashi@chromium.org> 2 15 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py
r90138 r90201 289 289 search_paths = set([self.port_name, self.name()]) 290 290 if self.get_option('webkit_test_runner'): 291 # Quoting old-run-webkit-tests: 292 # Because nearly all of the skipped tests for WebKit 2 on Mac are due to 293 # cross-platform issues, the Windows and Qt ports use the Mac skipped list 294 # additionally to their own to avoid maintaining separate lists. 295 search_paths.update([self._wk2_port_name(), "mac-wk2"]) 291 # Because nearly all of the skipped tests for WebKit 2 are due to cross-platform 292 # issues, all wk2 ports share a skipped list under platform/wk2. 293 search_paths.update([self._wk2_port_name(), "wk2"]) 296 294 return search_paths 297 295 -
trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit_unittest.py
r90077 r90201 98 98 self.assertEqual(port._skipped_file_search_paths(), set(['testwebkitport', 'testwebkitport-version'])) 99 99 port._options = MockOptions(webkit_test_runner=True) 100 self.assertEqual(port._skipped_file_search_paths(), set(['testwebkitport', 'testwebkitport-version', 'testwebkitport-wk2', ' mac-wk2']))100 self.assertEqual(port._skipped_file_search_paths(), set(['testwebkitport', 'testwebkitport-version', 'testwebkitport-wk2', 'wk2'])) 101 101 102 102 def test_test_expectations(self):
Note:
See TracChangeset
for help on using the changeset viewer.