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

Changeset 201606 in webkit


Ignore:
Timestamp:
Jun 2, 2016, 11:42:43 AM (10 years ago)
Author:
aakash_jain@apple.com
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r201592 r201606  
     12016-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
    1112016-06-01  Brian Burg  <bburg@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/ios.py

    r200515 r201606  
    260260                shutil.rmtree(os.path.join(os.path.expanduser("~"), "Library/Logs/CoreSimulator/",
    261261                    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)
    262264                Simulator().delete_device(self.testing_device(i).udid)
    263265            except:
Note: See TracChangeset for help on using the changeset viewer.