Title: [214698] trunk/Tools
Revision
214698
Author
[email protected]
Date
2017-03-31 16:38:17 -0700 (Fri, 31 Mar 2017)

Log Message

Unreviewed fix after r214569
https://bugs.webkit.org/show_bug.cgi?id=170255

Unreviewed infrastructure fix.

* Scripts/webkitpy/port/ios.py:
(IOSPort.clean_up_test_run): Check if the device is defined before teardown.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (214697 => 214698)


--- trunk/Tools/ChangeLog	2017-03-31 23:33:24 UTC (rev 214697)
+++ trunk/Tools/ChangeLog	2017-03-31 23:38:17 UTC (rev 214698)
@@ -1,3 +1,13 @@
+2017-03-31  Jonathan Bedard  <[email protected]>
+
+        Unreviewed fix after r214569
+        https://bugs.webkit.org/show_bug.cgi?id=170255
+
+        Unreviewed infrastructure fix.
+
+        * Scripts/webkitpy/port/ios.py:
+        (IOSPort.clean_up_test_run): Check if the device is defined before teardown.
+
 2017-03-31  Andy Estes  <[email protected]>
 
         REGRESSION (r202472): Data Detection overwrites existing links in detected ranges

Modified: trunk/Tools/Scripts/webkitpy/port/ios.py (214697 => 214698)


--- trunk/Tools/Scripts/webkitpy/port/ios.py	2017-03-31 23:33:24 UTC (rev 214697)
+++ trunk/Tools/Scripts/webkitpy/port/ios.py	2017-03-31 23:38:17 UTC (rev 214698)
@@ -131,7 +131,8 @@
         for i in xrange(self.child_processes()):
             device = self.device_for_worker_number(i)
             try:
-                self.device_for_worker_number(i).finished_testing()
+                if device:
+                    device.finished_testing()
             except BaseException as e:
                 trace = traceback.format_exc()
                 if isinstance(e, Exception):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to