Changeset 229379 in webkit


Ignore:
Timestamp:
Mar 7, 2018 4:07:26 PM (6 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: --dedicated-simulators does not boot the correct number of simulators
https://bugs.webkit.org/show_bug.cgi?id=183409
<rdar://problem/38224631>

Reviewed by Aakash Jain.

  • Scripts/webkitpy/port/ios_simulator.py:

(IOSSimulatorPort.default_child_processes): When not using dedicated simulators,
we should use the number of booted simulators as our default child processes.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r229359 r229379  
     12018-03-07  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: --dedicated-simulators does not boot the correct number of simulators
     4        https://bugs.webkit.org/show_bug.cgi?id=183409
     5        <rdar://problem/38224631>
     6
     7        Reviewed by Aakash Jain.
     8
     9        * Scripts/webkitpy/port/ios_simulator.py:
     10        (IOSSimulatorPort.default_child_processes): When not using dedicated simulators,
     11        we should use the number of booted simulators as our default child processes.
     12
    1132018-03-07  Alejandro G. Castro  <alex@igalia.com>
    214
  • trunk/Tools/Scripts/webkitpy/port/ios_simulator.py

    r227610 r229379  
    7474                                                                    software_version=self.ios_version())
    7575
    76         if self.get_option('dedicated_simulators', False):
     76        if not self.get_option('dedicated_simulators', False):
    7777            num_booted_sims = len(SimulatedDeviceManager.device_by_filter(booted_ios_devices_filter, host=self.host))
    7878            if num_booted_sims:
Note: See TracChangeset for help on using the changeset viewer.