Title: [217671] trunk/Tools
- Revision
- 217671
- Author
- [email protected]
- Date
- 2017-06-01 12:06:56 -0700 (Thu, 01 Jun 2017)
Log Message
webkitpy: Remove unneeded simulator teardown
https://bugs.webkit.org/show_bug.cgi?id=171891
Reviewed by Aakash Jain.
* Scripts/webkitpy/port/ios_simulator.py:
(IOSSimulatorPort.clean_up_test_run): Remove FIFO deletion since TCP is used
for communication between Python and WebKitTestRunner/DumpRenderTree.
Modified Paths
Diff
Modified: trunk/Tools/ChangeLog (217670 => 217671)
--- trunk/Tools/ChangeLog 2017-06-01 18:43:48 UTC (rev 217670)
+++ trunk/Tools/ChangeLog 2017-06-01 19:06:56 UTC (rev 217671)
@@ -1,3 +1,14 @@
+2017-06-01 Jonathan Bedard <[email protected]>
+
+ webkitpy: Remove unneeded simulator teardown
+ https://bugs.webkit.org/show_bug.cgi?id=171891
+
+ Reviewed by Aakash Jain.
+
+ * Scripts/webkitpy/port/ios_simulator.py:
+ (IOSSimulatorPort.clean_up_test_run): Remove FIFO deletion since TCP is used
+ for communication between Python and WebKitTestRunner/DumpRenderTree.
+
2017-06-01 Keith Miller <[email protected]>
Undo rollout in r217638 with bug fix
Modified: trunk/Tools/Scripts/webkitpy/port/ios_simulator.py (217670 => 217671)
--- trunk/Tools/Scripts/webkitpy/port/ios_simulator.py 2017-06-01 18:43:48 UTC (rev 217670)
+++ trunk/Tools/Scripts/webkitpy/port/ios_simulator.py 2017-06-01 19:06:56 UTC (rev 217671)
@@ -248,13 +248,6 @@
def clean_up_test_run(self):
super(IOSSimulatorPort, self).clean_up_test_run()
_log.debug("clean_up_test_run")
- fifos = [path for path in os.listdir('/tmp') if re.search('org.webkit.(DumpRenderTree|WebKitTestRunner).*_(IN|OUT|ERROR)', path)]
- for fifo in fifos:
- try:
- os.remove(os.path.join('/tmp', fifo))
- except OSError:
- _log.warning('Unable to remove ' + fifo)
- pass
if not self._using_dedicated_simulators():
return
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes