Title: [248451] trunk/Tools
- Revision
- 248451
- Author
- [email protected]
- Date
- 2019-08-08 16:31:12 -0700 (Thu, 08 Aug 2019)
Log 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.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (248450 => 248451)
--- trunk/Tools/ChangeLog 2019-08-08 23:25:45 UTC (rev 248450)
+++ trunk/Tools/ChangeLog 2019-08-08 23:31:12 UTC (rev 248451)
@@ -1,3 +1,14 @@
+2019-08-08 Jonathan Bedard <[email protected]>
+
+ 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.
+
2019-08-08 Brent Fulgham <[email protected]>
[FTW] Get WebKit, WebKit2, and MiniBrowser building and executing
Modified: trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py (248450 => 248451)
--- trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py 2019-08-08 23:25:45 UTC (rev 248450)
+++ trunk/Tools/Scripts/webkitpy/xcode/simulated_device.py 2019-08-08 23:31:12 UTC (rev 248451)
@@ -396,7 +396,7 @@
SimulatedDeviceManager._boot_device(device, host)
if simulator_ui and host.executive.run_command(['killall', '-0', 'Simulator'], return_exit_code=True) != 0:
- SimulatedDeviceManager._managing_simulator_app = not host.executive.run_command(['open', '-g', '-b', SimulatedDeviceManager.simulator_bundle_id], return_exit_code=True)
+ SimulatedDeviceManager._managing_simulator_app = not host.executive.run_command(['open', '-g', '-b', SimulatedDeviceManager.simulator_bundle_id, '--args', '-PasteboardAutomaticSync', '0'], return_exit_code=True)
deadline = time.time() + timeout
for device in SimulatedDeviceManager.INITIALIZED_DEVICES:
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes