Title: [236562] trunk/Tools
Revision
236562
Author
[email protected]
Date
2018-09-27 12:00:13 -0700 (Thu, 27 Sep 2018)

Log Message

iOS Simulator bots should pass '--dedicated-simulators' to run-webkit-tests
https://bugs.webkit.org/show_bug.cgi?id=190042

Reviewed by Aakash Jain.

To make iOS Simulator bots resilient to issues that can arise from reusing
existing simulators, ensure that dedicated simulators are created for each test run.

* Scripts/webkitpy/common/config/ports.py:
(IOSSimulatorWK2Port.run_webkit_tests_command):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (236561 => 236562)


--- trunk/Tools/ChangeLog	2018-09-27 18:29:52 UTC (rev 236561)
+++ trunk/Tools/ChangeLog	2018-09-27 19:00:13 UTC (rev 236562)
@@ -1,3 +1,16 @@
+2018-09-27  Ryan Haddad  <[email protected]>
+
+        iOS Simulator bots should pass '--dedicated-simulators' to run-webkit-tests
+        https://bugs.webkit.org/show_bug.cgi?id=190042
+
+        Reviewed by Aakash Jain.
+
+        To make iOS Simulator bots resilient to issues that can arise from reusing
+        existing simulators, ensure that dedicated simulators are created for each test run.
+
+        * Scripts/webkitpy/common/config/ports.py:
+        (IOSSimulatorWK2Port.run_webkit_tests_command):
+
 2018-09-27  Alex Christensen  <[email protected]>
 
         URLWithUserTypedString should return nil for URLs deemed to be invalid by WebCore::URL

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


--- trunk/Tools/Scripts/webkitpy/common/config/ports.py	2018-09-27 18:29:52 UTC (rev 236561)
+++ trunk/Tools/Scripts/webkitpy/common/config/ports.py	2018-09-27 19:00:13 UTC (rev 236562)
@@ -159,6 +159,7 @@
     def run_webkit_tests_command(self, build_style=None):
         command = super(IOSSimulatorWK2Port, self).run_webkit_tests_command(build_style)
         command.append("--ios-simulator")
+        command.append("--dedicated-simulators")
         return command
 
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to