Title: [154704] trunk/Tools
Revision
154704
Author
[email protected]
Date
2013-08-27 12:41:14 -0700 (Tue, 27 Aug 2013)

Log Message

NRWT on AppleWin port should delete semaphore lock files during cleanup tasks.
https://bugs.webkit.org/show_bug.cgi?id=120370.

Reviewed by Brent Fulgham.

* Scripts/webkitpy/port/win.py:
(WinPort.delete_sem_locks):
(WinPort.setup_test_run):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (154703 => 154704)


--- trunk/Tools/ChangeLog	2013-08-27 19:22:54 UTC (rev 154703)
+++ trunk/Tools/ChangeLog	2013-08-27 19:41:14 UTC (rev 154704)
@@ -1,3 +1,14 @@
+2013-08-27  Roger Fong  <[email protected]>
+
+        NRWT on AppleWin port should delete semaphore lock files during cleanup tasks.
+        https://bugs.webkit.org/show_bug.cgi?id=120370.
+
+        Reviewed by Brent Fulgham.
+
+        * Scripts/webkitpy/port/win.py:
+        (WinPort.delete_sem_locks):
+        (WinPort.setup_test_run):
+
 2013-08-27  Denis Nomiyama  <[email protected]>
 
         [GTK] Missing DRT AccessibilityUIElement::addNotificationListener implementation

Modified: trunk/Tools/Scripts/webkitpy/port/win.py (154703 => 154704)


--- trunk/Tools/Scripts/webkitpy/port/win.py	2013-08-27 19:22:54 UTC (rev 154703)
+++ trunk/Tools/Scripts/webkitpy/port/win.py	2013-08-27 19:41:14 UTC (rev 154704)
@@ -208,9 +208,13 @@
         for key in self.previous_debugger_values:
             self.write_registry_string(key, self.previous_debugger_values[key])
 
+    def delete_sem_locks(self):
+        os.system("rm -rf /dev/shm/sem.*")
+
     def setup_test_run(self):
         atexit.register(self.restore_crash_log_saving)
         self.setup_crash_log_saving()
+        self.delete_sem_locks()
         super(WinPort, self).setup_test_run()
 
     def clean_up_test_run(self):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to