Title: [221089] trunk/Tools
Revision
221089
Author
[email protected]
Date
2017-08-23 11:35:15 -0700 (Wed, 23 Aug 2017)

Log Message

Access expectations path through apple_additions
https://bugs.webkit.org/show_bug.cgi?id=174800
<rdar://problem/33498899>

Unreviewed follow-up fix for r221087.

* Scripts/webkitpy/port/ios.py:
(IOSPort._apple_additions_path): Use iOS mapping instead of Mac mapping.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (221088 => 221089)


--- trunk/Tools/ChangeLog	2017-08-23 18:14:39 UTC (rev 221088)
+++ trunk/Tools/ChangeLog	2017-08-23 18:35:15 UTC (rev 221089)
@@ -4,6 +4,17 @@
         https://bugs.webkit.org/show_bug.cgi?id=174800
         <rdar://problem/33498899>
 
+        Unreviewed follow-up fix for r221087.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSPort._apple_additions_path): Use iOS mapping instead of Mac mapping.
+
+2017-08-23  Jonathan Bedard  <[email protected]>
+
+        Access expectations path through apple_additions
+        https://bugs.webkit.org/show_bug.cgi?id=174800
+        <rdar://problem/33498899>
+
         Reviewed by David Kilzer.
 
         Follow-up fix. Mapping of operating system names was done incorrectly.

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (221088 => 221089)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2017-08-23 18:14:39 UTC (rev 221088)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2017-08-23 18:35:15 UTC (rev 221089)
@@ -96,7 +96,7 @@
             if split_name[os_index] == 'wk1' or split_name[os_index] == 'wk2' or split_name[os_index] == 'simulator' or split_name[os_index] == 'device':
                 os_index -= 1
         if split_name[os_index] != split_name[0]:
-            os_name = apple_additions().mac_os_name(split_name[os_index])
+            os_name = apple_additions().ios_os_name(split_name[os_index])
             if not os_name:
                 return None
             split_name[os_index] = os_name
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to