Changeset 245885 in webkit


Ignore:
Timestamp:
May 30, 2019 9:05:21 AM (5 years ago)
Author:
Jonathan Bedard
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r245882 r245885  
     12019-05-30  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Switch run-webkit-tests to tailspin (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=198144
     5        <rdar://problem/32463212>
     6
     7        Unreviewed infrastructure fix.
     8
     9        * Scripts/webkitpy/port/darwin.py:
     10        (DarwinPort.look_for_new_samples): Use tailspin_file_path instead of spindump_file_path.
     11
    1122019-05-29  Wenson Hsieh  <wenson_hsieh@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/port/darwin.py

    r245824 r245885  
    216216                sample_files[test_name] = sample_file
    217217            else:
    218                 spindump_file = DarwinPort.spindump_file_path(self.host, process_name, pid, self.results_directory())
    219                 if self._filesystem.isfile(spindump_file):
    220                     sample_files[test_name] = spindump_file
     218                tailspin_file = DarwinPort.tailspin_file_path(self.host, process_name, pid, self.results_directory())
     219                if self._filesystem.isfile(tailspin_file):
     220                    sample_files[test_name] = tailspin_file
    221221        return sample_files
    222222
Note: See TracChangeset for help on using the changeset viewer.