Title: [226786] trunk/Tools
Revision
226786
Author
jbed...@apple.com
Date
2018-01-11 10:26:26 -0800 (Thu, 11 Jan 2018)

Log Message

REGRESSION(r225856): Incorrectly managing 'future' baseline_search_paths. 
https://bugs.webkit.org/show_bug.cgi?id=179621
<rdar://problem/35589585>

Unreviewed infrastructure fix.

* Scripts/webkitpy/port/mac.py:
(MacPort.default_baseline_search_path): Include 'future' in the version_fallback
list if we are the VERSION_MAX, which usually corresponds with future.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (226785 => 226786)


--- trunk/Tools/ChangeLog	2018-01-11 18:20:14 UTC (rev 226785)
+++ trunk/Tools/ChangeLog	2018-01-11 18:26:26 UTC (rev 226786)
@@ -1,3 +1,15 @@
+2018-01-11  Jonathan Bedard  <jbed...@apple.com>
+
+        REGRESSION(r225856): Incorrectly managing 'future' baseline_search_paths. 
+        https://bugs.webkit.org/show_bug.cgi?id=179621
+        <rdar://problem/35589585>
+
+        Unreviewed infrastructure fix.
+
+        * Scripts/webkitpy/port/mac.py:
+        (MacPort.default_baseline_search_path): Include 'future' in the version_fallback
+        list if we are the VERSION_MAX, which usually corresponds with future.
+
 2018-01-11  Filip Pizlo  <fpi...@apple.com>
 
         CodeBlocks should be in IsoSubspaces

Modified: trunk/Tools/Scripts/webkitpy/port/mac.py (226785 => 226786)


--- trunk/Tools/Scripts/webkitpy/port/mac.py	2018-01-11 18:20:14 UTC (rev 226785)
+++ trunk/Tools/Scripts/webkitpy/port/mac.py	2018-01-11 18:26:26 UTC (rev 226786)
@@ -70,7 +70,7 @@
     @memoized
     def default_baseline_search_path(self):
         version_name_map = VersionNameMap.map(self.host.platform)
-        if self._os_version < self.VERSION_MIN or self._os_version > self.VERSION_MAX:
+        if self._os_version < self.VERSION_MIN or self._os_version >= self.VERSION_MAX:
             version_fallback = [self._os_version]
         else:
             sorted_versions = sorted(version_name_map.mapping_for_platform(platform=self.port_name).values())
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to