Title: [245885] trunk/Tools
Revision
245885
Author
[email protected]
Date
2019-05-30 09:05:21 -0700 (Thu, 30 May 2019)

Log Message

webkitpy: Switch run-webkit-tests to tailspin (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=198144
<rdar://problem/32463212>

Unreviewed infrastructure fix.

* Scripts/webkitpy/port/darwin.py:
(DarwinPort.look_for_new_samples): Use tailspin_file_path instead of spindump_file_path.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (245884 => 245885)


--- trunk/Tools/ChangeLog	2019-05-30 14:52:00 UTC (rev 245884)
+++ trunk/Tools/ChangeLog	2019-05-30 16:05:21 UTC (rev 245885)
@@ -1,3 +1,14 @@
+2019-05-30  Jonathan Bedard  <[email protected]>
+
+        webkitpy: Switch run-webkit-tests to tailspin (Follow-up fix)
+        https://bugs.webkit.org/show_bug.cgi?id=198144
+        <rdar://problem/32463212>
+
+        Unreviewed infrastructure fix.
+
+        * Scripts/webkitpy/port/darwin.py:
+        (DarwinPort.look_for_new_samples): Use tailspin_file_path instead of spindump_file_path.
+
 2019-05-29  Wenson Hsieh  <[email protected]>
 
         Remove some logic to suppress the text selection assistant during drop

Modified: trunk/Tools/Scripts/webkitpy/port/darwin.py (245884 => 245885)


--- trunk/Tools/Scripts/webkitpy/port/darwin.py	2019-05-30 14:52:00 UTC (rev 245884)
+++ trunk/Tools/Scripts/webkitpy/port/darwin.py	2019-05-30 16:05:21 UTC (rev 245885)
@@ -215,9 +215,9 @@
             if self._filesystem.isfile(sample_file):
                 sample_files[test_name] = sample_file
             else:
-                spindump_file = DarwinPort.spindump_file_path(self.host, process_name, pid, self.results_directory())
-                if self._filesystem.isfile(spindump_file):
-                    sample_files[test_name] = spindump_file
+                tailspin_file = DarwinPort.tailspin_file_path(self.host, process_name, pid, self.results_directory())
+                if self._filesystem.isfile(tailspin_file):
+                    sample_files[test_name] = tailspin_file
         return sample_files
 
     def _path_to_image_diff(self):
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to