Title: [201606] trunk/Tools
Revision
201606
Author
[email protected]
Date
2016-06-02 11:42:43 -0700 (Thu, 02 Jun 2016)

Log Message

LayoutTests time out intermittently due to alert about reopening Simulator after it unexpectedly quit
https://bugs.webkit.org/show_bug.cgi?id=158305

Reviewed by Alexey Proskuryakov.

* Scripts/webkitpy/port/ios.py:
(IOSSimulatorPort.clean_up_test_run): Delete simulator's savedState directories during cleanup.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (201605 => 201606)


--- trunk/Tools/ChangeLog	2016-06-02 18:41:16 UTC (rev 201605)
+++ trunk/Tools/ChangeLog	2016-06-02 18:42:43 UTC (rev 201606)
@@ -1,3 +1,13 @@
+2016-06-02  Aakash Jain  <[email protected]>
+
+        LayoutTests time out intermittently due to alert about reopening Simulator after it unexpectedly quit
+        https://bugs.webkit.org/show_bug.cgi?id=158305
+
+        Reviewed by Alexey Proskuryakov.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSSimulatorPort.clean_up_test_run): Delete simulator's savedState directories during cleanup.
+
 2016-06-01  Brian Burg  <[email protected]>
 
         REGRESSION(r191907): Can't enter combining diacritic marks in Web Inspector fields

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (201605 => 201606)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2016-06-02 18:41:16 UTC (rev 201605)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2016-06-02 18:42:43 UTC (rev 201606)
@@ -259,6 +259,8 @@
                 shutil.rmtree(self.get_simulator_path(i), ignore_errors=True)
                 shutil.rmtree(os.path.join(os.path.expanduser("~"), "Library/Logs/CoreSimulator/",
                     self.testing_device(i).udid), ignore_errors=True)
+                shutil.rmtree(os.path.join(os.path.expanduser("~"), "Library/Saved Application State/",
+                    self.SIMULATOR_BUNDLE_ID + str(i) + ".savedState"), ignore_errors=True)
                 Simulator().delete_device(self.testing_device(i).udid)
             except:
                 _log.warning('Unable to remove Simulator' + str(i))
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to