Changeset 248451 in webkit
- Timestamp:
- Aug 8, 2019, 4:31:12 PM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/xcode/simulated_device.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r248444 r248451 1 2019-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 1 12 2019-08-08 Brent Fulgham <bfulgham@apple.com> 2 13 -
trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py
r248270 r248451 397 397 398 398 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) 400 400 401 401 deadline = time.time() + timeout
Note:
See TracChangeset
for help on using the changeset viewer.