Changeset 245169 in webkit


Ignore:
Timestamp:
May 9, 2019 7:38:33 PM (5 years ago)
Author:
Fujii Hironori
Message:

WinCairo WebKitTestRunner should take platform/wk2/TestExpectations into account
https://bugs.webkit.org/show_bug.cgi?id=197734

Reviewed by Don Olmstead.

  • Scripts/webkitpy/port/win.py:

(WinCairoPort._search_paths): Add 'wk2' and
additional_platform_directory to paths as well as other ports do.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r245161 r245169  
     12019-05-09  Fujii Hironori  <Hironori.Fujii@sony.com>
     2
     3        WinCairo WebKitTestRunner should take platform/wk2/TestExpectations into account
     4        https://bugs.webkit.org/show_bug.cgi?id=197734
     5
     6        Reviewed by Don Olmstead.
     7
     8        * Scripts/webkitpy/port/win.py:
     9        (WinCairoPort._search_paths): Add 'wk2' and
     10        additional_platform_directory to paths as well as other ports do.
     11
    1122019-05-09  Daniel Bates  <dabates@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/port/win.py

    r241979 r245169  
    508508        paths.append(self.port_name + '-' + wk_version)
    509509        paths.append(self.port_name)
     510        if self.get_option('webkit_test_runner'):
     511            paths.append('wk2')
     512        paths.extend(self.get_option("additional_platform_directory", []))
    510513
    511514        return paths
Note: See TracChangeset for help on using the changeset viewer.