Title: [224875] trunk/Tools
Revision
224875
Author
jbed...@apple.com
Date
2017-11-15 08:17:47 -0800 (Wed, 15 Nov 2017)

Log Message

REGRESSION(r221877): 'future' handled incorrectly for mac
https://bugs.webkit.org/show_bug.cgi?id=179711
<rdar://problem/35546604>

Reviewed by Alex Christensen.

* Scripts/webkitpy/port/mac.py:
(MacPort.default_baseline_search_path): Use platform/mac-<version> instead of
platform/<version> as the baseline search path.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (224874 => 224875)


--- trunk/Tools/ChangeLog	2017-11-15 13:26:52 UTC (rev 224874)
+++ trunk/Tools/ChangeLog	2017-11-15 16:17:47 UTC (rev 224875)
@@ -1,3 +1,15 @@
+2017-11-15  Jonathan Bedard  <jbed...@apple.com>
+
+        REGRESSION(r221877): 'future' handled incorrectly for mac
+        https://bugs.webkit.org/show_bug.cgi?id=179711
+        <rdar://problem/35546604>
+
+        Reviewed by Alex Christensen.
+
+        * Scripts/webkitpy/port/mac.py:
+        (MacPort.default_baseline_search_path): Use platform/mac-<version> instead of
+        platform/<version> as the baseline search path.
+
 2017-11-14  Nan Wang  <n_w...@apple.com>
 
         AX: AOM: Implement AccessibleNode class and support label and role attributes

Modified: trunk/Tools/Scripts/webkitpy/port/mac.py (224874 => 224875)


--- trunk/Tools/Scripts/webkitpy/port/mac.py	2017-11-15 13:26:52 UTC (rev 224874)
+++ trunk/Tools/Scripts/webkitpy/port/mac.py	2017-11-15 16:17:47 UTC (rev 224875)
@@ -76,7 +76,7 @@
     def default_baseline_search_path(self):
         mac_version = 'mac-{}'.format(self._os_version)
         if mac_version.endswith(self.FUTURE_VERSION) or mac_version not in self.VERSION_FALLBACK_ORDER:
-            version_fallback = [self._os_version]
+            version_fallback = [mac_version]
         else:
             version_fallback = self.VERSION_FALLBACK_ORDER[self.VERSION_FALLBACK_ORDER.index(mac_version):-1]
         wk_string = 'wk1'
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to