Title: [235317] trunk/Tools
Revision
235317
Author
[email protected]
Date
2018-08-24 07:03:30 -0700 (Fri, 24 Aug 2018)

Log Message

Fix handling of iOS minor versions in default_baseline_search_path
https://bugs.webkit.org/show_bug.cgi?id=188902

Reviewed by Aakash Jain.

* Scripts/webkitpy/port/ios.py:
(IOSPort.default_baseline_search_path): When the major version matches the major version of the CURRENT_VERSION, treat
it as a the CURRENT_VERSION.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (235316 => 235317)


--- trunk/Tools/ChangeLog	2018-08-24 10:12:56 UTC (rev 235316)
+++ trunk/Tools/ChangeLog	2018-08-24 14:03:30 UTC (rev 235317)
@@ -1,3 +1,14 @@
+2018-08-24  Jonathan Bedard  <[email protected]>
+
+        Fix handling of iOS minor versions in default_baseline_search_path
+        https://bugs.webkit.org/show_bug.cgi?id=188902
+
+        Reviewed by Aakash Jain.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSPort.default_baseline_search_path): When the major version matches the major version of the CURRENT_VERSION, treat
+        it as a the CURRENT_VERSION.
+
 2018-08-24  Antti Koivisto  <[email protected]>
 
         Allow creating WeakPtrs to const objects

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (235316 => 235317)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2018-08-24 10:12:56 UTC (rev 235316)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2018-08-24 14:03:30 UTC (rev 235317)
@@ -96,7 +96,7 @@
             wk_string = 'wk2'
 
         versions_to_fallback = []
-        if self.ios_version() == self.CURRENT_VERSION:
+        if self.ios_version().major == self.CURRENT_VERSION.major:
             versions_to_fallback = [self.CURRENT_VERSION]
         elif self.ios_version():
             temp_version = Version(self.ios_version().major)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to