⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 90201 in webkit


Ignore:
Timestamp:
Jun 30, 2011, 8:31:51 PM (15 years ago)
Author:
eric@webkit.org
Message:

2011-06-30 Eric Seidel <eric@webkit.org>

Reviewed by Adam Barth.

Update new-run-webkit-tests now that the wk2 shared skipped list has moved
https://bugs.webkit.org/show_bug.cgi?id=63780

The shared list was moved from mac-wk2 to wk2 as part of
http://trac.webkit.org/changeset/90125.

  • Scripts/webkitpy/layout_tests/port/webkit.py:
  • Scripts/webkitpy/layout_tests/port/webkit_unittest.py:
Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r90197 r90201  
     12011-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
    1142011-06-30  Kenichi Ishibashi  <bashi@chromium.org>
    215
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit.py

    r90138 r90201  
    289289        search_paths = set([self.port_name, self.name()])
    290290        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"])
    296294        return search_paths
    297295
  • trunk/Tools/Scripts/webkitpy/layout_tests/port/webkit_unittest.py

    r90077 r90201  
    9898        self.assertEqual(port._skipped_file_search_paths(), set(['testwebkitport', 'testwebkitport-version']))
    9999        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']))
    101101
    102102    def test_test_expectations(self):
Note: See TracChangeset for help on using the changeset viewer.