Title: [215191] trunk/Tools
Revision
215191
Author
jbed...@apple.com
Date
2017-04-10 11:11:55 -0700 (Mon, 10 Apr 2017)

Log Message

webkitpy: Increase estimate for processes run by iOS Simulators
https://bugs.webkit.org/show_bug.cgi?id=170678
<rdar://problem/31534061>

Reviewed by Aakash Jain.

Previously, it was estimated that each simulated iOS device would run about 100
processes.  With newer versions of iOS, this is closer to 125.

* Scripts/webkitpy/port/ios_simulator.py:
(IOSSimulatorPort): Increase process estimate from 100 to 125.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (215190 => 215191)


--- trunk/Tools/ChangeLog	2017-04-10 18:06:32 UTC (rev 215190)
+++ trunk/Tools/ChangeLog	2017-04-10 18:11:55 UTC (rev 215191)
@@ -1,3 +1,17 @@
+2017-04-10  Jonathan Bedard  <jbed...@apple.com>
+
+        webkitpy: Increase estimate for processes run by iOS Simulators
+        https://bugs.webkit.org/show_bug.cgi?id=170678
+        <rdar://problem/31534061>
+
+        Reviewed by Aakash Jain.
+
+        Previously, it was estimated that each simulated iOS device would run about 100
+        processes.  With newer versions of iOS, this is closer to 125.
+
+        * Scripts/webkitpy/port/ios_simulator.py:
+        (IOSSimulatorPort): Increase process estimate from 100 to 125.
+
 2017-04-10  Adrian Perez de Castro  <ape...@igalia.com>
 
         [GTK] Misplaced right click menu on web page due to deprecated gtk_menu_popup()

Modified: trunk/Tools/Scripts/webkitpy/port/ios_simulator.py (215190 => 215191)


--- trunk/Tools/Scripts/webkitpy/port/ios_simulator.py	2017-04-10 18:06:32 UTC (rev 215190)
+++ trunk/Tools/Scripts/webkitpy/port/ios_simulator.py	2017-04-10 18:11:55 UTC (rev 215191)
@@ -52,7 +52,7 @@
     SIMULATOR_BUNDLE_ID = 'com.apple.iphonesimulator'
     SIMULATOR_DIRECTORY = "/tmp/WebKitTestingSimulators/"
     LSREGISTER_PATH = "/System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Versions/Current/Support/lsregister"
-    PROCESS_COUNT_ESTIMATE_PER_SIMULATOR_INSTANCE = 100
+    PROCESS_COUNT_ESTIMATE_PER_SIMULATOR_INSTANCE = 125
 
     DEVICE_CLASS_MAP = {
         'x86_64': {
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to