⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 248451 in webkit


Ignore:
Timestamp:
Aug 8, 2019, 4:31:12 PM (7 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Disable shared clipboard between Simulators
https://bugs.webkit.org/show_bug.cgi?id=200546

Reviewed by Aakash Jain.

  • Scripts/webkitpy/xcode/simulated_device.py:

(SimulatedDeviceManager.initialize_devices): Disable PasteboardAutomaticSync in Simulator.app
managed by run-webkit-tests.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r248444 r248451  
     12019-08-08  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Disable shared clipboard between Simulators
     4        https://bugs.webkit.org/show_bug.cgi?id=200546
     5
     6        Reviewed by Aakash Jain.
     7
     8        * Scripts/webkitpy/xcode/simulated_device.py:
     9        (SimulatedDeviceManager.initialize_devices): Disable PasteboardAutomaticSync in Simulator.app
     10        managed by run-webkit-tests.
     11
    1122019-08-08  Brent Fulgham  <bfulgham@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py

    r248270 r248451  
    397397
    398398        if simulator_ui and host.executive.run_command(['killall', '-0', 'Simulator'], return_exit_code=True) != 0:
    399             SimulatedDeviceManager._managing_simulator_app = not host.executive.run_command(['open', '-g', '-b', SimulatedDeviceManager.simulator_bundle_id], return_exit_code=True)
     399            SimulatedDeviceManager._managing_simulator_app = not host.executive.run_command(['open', '-g', '-b', SimulatedDeviceManager.simulator_bundle_id, '--args', '-PasteboardAutomaticSync', '0'], return_exit_code=True)
    400400
    401401        deadline = time.time() + timeout
Note: See TracChangeset for help on using the changeset viewer.