Title: [197805] trunk/Tools
Revision
197805
Author
a...@apple.com
Date
2016-03-08 14:29:50 -0800 (Tue, 08 Mar 2016)

Log Message

Add iOS simulator EWS that runs tests
https://bugs.webkit.org/show_bug.cgi?id=155175

Reviewed by Lucas Forschler.

* QueueStatusServer/config/queues.py:
* Scripts/webkitpy/common/config/ews.json:
* Scripts/webkitpy/common/config/ports.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (197804 => 197805)


--- trunk/Tools/ChangeLog	2016-03-08 22:22:40 UTC (rev 197804)
+++ trunk/Tools/ChangeLog	2016-03-08 22:29:50 UTC (rev 197805)
@@ -1,3 +1,14 @@
+2016-03-08  Alexey Proskuryakov  <a...@apple.com>
+
+        Add iOS simulator EWS that runs tests
+        https://bugs.webkit.org/show_bug.cgi?id=155175
+
+        Reviewed by Lucas Forschler.
+
+        * QueueStatusServer/config/queues.py:
+        * Scripts/webkitpy/common/config/ews.json:
+        * Scripts/webkitpy/common/config/ports.py:
+
 2016-03-08  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r197793 and r197799.

Modified: trunk/Tools/QueueStatusServer/config/queues.py (197804 => 197805)


--- trunk/Tools/QueueStatusServer/config/queues.py	2016-03-08 22:22:40 UTC (rev 197804)
+++ trunk/Tools/QueueStatusServer/config/queues.py	2016-03-08 22:29:50 UTC (rev 197805)
@@ -35,6 +35,7 @@
     "style-queue",
     "gtk-wk2-ews",
     "ios-ews",
+    "ios-sim-ews",
     "mac-ews",
     "mac-wk2-ews",
     "mac-debug-ews",

Modified: trunk/Tools/Scripts/webkitpy/common/config/ews.json (197804 => 197805)


--- trunk/Tools/Scripts/webkitpy/common/config/ews.json	2016-03-08 22:22:40 UTC (rev 197804)
+++ trunk/Tools/Scripts/webkitpy/common/config/ews.json	2016-03-08 22:29:50 UTC (rev 197805)
@@ -21,6 +21,11 @@
         "port": "ios",
         "architecture": "armv7"
     },
+    "iOS Simulator EWS": {
+        "port": "ios-simulator-wk2",
+        "name": "ios-sim-ews",
+        "runTests": true
+    },
     "Mac EWS": {
         "port": "mac",
         "watchers": [

Modified: trunk/Tools/Scripts/webkitpy/common/config/ports.py (197804 => 197805)


--- trunk/Tools/Scripts/webkitpy/common/config/ports.py	2016-03-08 22:22:40 UTC (rev 197804)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports.py	2016-03-08 22:29:50 UTC (rev 197805)
@@ -65,6 +65,7 @@
         ports = {
             "gtk-wk2": GtkWK2Port,
             "ios": IOSPort,
+            "ios-simulator-wk2": IOSSimulatorWK2Port,
             "mac": MacPort,
             "mac-wk2": MacWK2Port,
             "win": WinPort,
@@ -132,6 +133,15 @@
         return command
 
 
+class IOSSimulatorWK2Port(DeprecatedPort):
+    port_flag_name = "ios-simulator-wk2"
+
+    def build_webkit_command(self, build_style=None):
+        command = super(IOSSimulatorWK2Port, self).build_webkit_command(build_style=build_style)
+        command.append("--sdk=iphonesimulator")
+        return command
+
+
 class MacPort(DeprecatedPort):
     port_flag_name = "mac"
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to