Changeset 230641 in webkit


Ignore:
Timestamp:
Apr 13, 2018 11:11:14 AM (6 years ago)
Author:
Jonathan Bedard
Message:

Boot fewer simulators in CI/EWS machines
https://bugs.webkit.org/show_bug.cgi?id=184594
<rdar://problem/39188082>

Reviewed by Alexey Proskuryakov.

This is a temporary workaround fro <rdar://problem/39393590>.

  • Scripts/webkitpy/xcode/simulated_device.py:

(SimulatedDeviceManager): Treat simulators as taking 6 gigs instead of 2.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r230640 r230641  
     12018-04-13  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Boot fewer simulators in CI/EWS machines
     4        https://bugs.webkit.org/show_bug.cgi?id=184594
     5        <rdar://problem/39188082>
     6
     7        Reviewed by Alexey Proskuryakov.
     8
     9        This is a temporary workaround fro <rdar://problem/39393590>.
     10
     11        * Scripts/webkitpy/xcode/simulated_device.py:
     12        (SimulatedDeviceManager): Treat simulators as taking 6 gigs instead of 2.
     13
    1142018-04-13  Brady Eidson  <beidson@apple.com>
    215
  • trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py

    r226918 r230641  
    6262    INITIALIZED_DEVICES = None
    6363
    64     MEMORY_ESTIMATE_PER_SIMULATOR_INSTANCE = 2 * (1024 ** 3)  # 2GB a simulator.
     64    # FIXME: Simulators should only take up 2GB, but because of <rdar://problem/39393590> something in the OS thinks they're taking closer to 6GB
     65    MEMORY_ESTIMATE_PER_SIMULATOR_INSTANCE = 6 * (1024 ** 3)  # 6GB a simulator.
    6566    PROCESS_COUNT_ESTIMATE_PER_SIMULATOR_INSTANCE = 125
    6667
Note: See TracChangeset for help on using the changeset viewer.