Changeset 201606 in webkit
- Timestamp:
- Jun 2, 2016, 11:42:43 AM (10 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/port/ios.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r201592 r201606 1 2016-06-02 Aakash Jain <aakash_jain@apple.com> 2 3 LayoutTests time out intermittently due to alert about reopening Simulator after it unexpectedly quit 4 https://bugs.webkit.org/show_bug.cgi?id=158305 5 6 Reviewed by Alexey Proskuryakov. 7 8 * Scripts/webkitpy/port/ios.py: 9 (IOSSimulatorPort.clean_up_test_run): Delete simulator's savedState directories during cleanup. 10 1 11 2016-06-01 Brian Burg <bburg@apple.com> 2 12 -
trunk/Tools/Scripts/webkitpy/port/ios.py
r200515 r201606 260 260 shutil.rmtree(os.path.join(os.path.expanduser("~"), "Library/Logs/CoreSimulator/", 261 261 self.testing_device(i).udid), ignore_errors=True) 262 shutil.rmtree(os.path.join(os.path.expanduser("~"), "Library/Saved Application State/", 263 self.SIMULATOR_BUNDLE_ID + str(i) + ".savedState"), ignore_errors=True) 262 264 Simulator().delete_device(self.testing_device(i).udid) 263 265 except:
Note:
See TracChangeset
for help on using the changeset viewer.