Title: [179199] trunk/Tools
- Revision
- 179199
- Author
- [email protected]
- Date
- 2015-01-27 11:44:14 -0800 (Tue, 27 Jan 2015)
Log Message
[iOS WK2] Add directory LayoutTests/platform/wk2 to the list of baseline search paths
https://bugs.webkit.org/show_bug.cgi?id=140942
Reviewed by Alexey Proskuryakov.
The directory LayoutTests/platform/wk2 contains test expectations and test results that
are applicable to all WebKit2 ports. We should make use of this information when
running layout tests using iOS WebKit2.
Additionally, make use of the convenience function Port._wk2_port_name() for the name
of the WebKit2 port instead of directly using string concatenation.
* Scripts/webkitpy/port/ios.py:
(IOSSimulatorPort.default_baseline_search_path):
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (179198 => 179199)
--- trunk/Tools/ChangeLog 2015-01-27 19:41:55 UTC (rev 179198)
+++ trunk/Tools/ChangeLog 2015-01-27 19:44:14 UTC (rev 179199)
@@ -1,3 +1,20 @@
+2015-01-27 Daniel Bates <[email protected]>
+
+ [iOS WK2] Add directory LayoutTests/platform/wk2 to the list of baseline search paths
+ https://bugs.webkit.org/show_bug.cgi?id=140942
+
+ Reviewed by Alexey Proskuryakov.
+
+ The directory LayoutTests/platform/wk2 contains test expectations and test results that
+ are applicable to all WebKit2 ports. We should make use of this information when
+ running layout tests using iOS WebKit2.
+
+ Additionally, make use of the convenience function Port._wk2_port_name() for the name
+ of the WebKit2 port instead of directly using string concatenation.
+
+ * Scripts/webkitpy/port/ios.py:
+ (IOSSimulatorPort.default_baseline_search_path):
+
2015-01-27 Csaba Osztrogonác <[email protected]>
[Win] Disable FTL stress tests
Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (179198 => 179199)
--- trunk/Tools/Scripts/webkitpy/port/ios.py 2015-01-27 19:41:55 UTC (rev 179198)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py 2015-01-27 19:44:14 UTC (rev 179199)
@@ -174,7 +174,7 @@
def default_baseline_search_path(self):
if self.get_option('webkit_test_runner'):
- fallback_names = [self.port_name + '-wk2'] + [self.port_name]
+ fallback_names = [self._wk2_port_name(), 'wk2'] + [self.port_name]
else:
fallback_names = [self.port_name + '-wk1'] + [self.port_name]
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes