Title: [197834] trunk/Tools
Revision
197834
Author
[email protected]
Date
2016-03-08 21:53:54 -0800 (Tue, 08 Mar 2016)

Log Message

Fix iOS Simulator EWS.

Unreviewed build fix.

* Scripts/webkitpy/common/config/ports.py:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (197833 => 197834)


--- trunk/Tools/ChangeLog	2016-03-09 05:16:47 UTC (rev 197833)
+++ trunk/Tools/ChangeLog	2016-03-09 05:53:54 UTC (rev 197834)
@@ -1,3 +1,11 @@
+2016-03-08  Alexey Proskuryakov  <[email protected]>
+
+        Fix iOS Simulator EWS.
+
+        Unreviewed build fix.
+
+        * Scripts/webkitpy/common/config/ports.py:
+
 2016-03-08  Aakash Jain  <[email protected]>
 
         Booting multiple iOS simulator parallely fails sometimes

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


--- trunk/Tools/Scripts/webkitpy/common/config/ports.py	2016-03-09 05:16:47 UTC (rev 197833)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports.py	2016-03-09 05:53:54 UTC (rev 197834)
@@ -141,6 +141,10 @@
         command.append("--sdk=iphonesimulator")
         return command
 
+    def run_webkit_tests_command(self, build_style=None):
+        command = super(IOSSimulatorWK2Port, self).run_webkit_tests_command(build_style)
+        command.append("--ios-simulator")
+        return command
 
 class MacPort(DeprecatedPort):
     port_flag_name = "mac"
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to