Changeset 216788 in webkit


Ignore:
Timestamp:
May 12, 2017, 1:37:46 PM (8 years ago)
Author:
Jonathan Bedard
Message:

Unreviewed follow-up to r216776.

  • Scripts/webkitpy/port/base.py:

(Port.path_to_crash_logs): Raise not implemented.

  • Scripts/webkitpy/port/test.py:

(TestPort.path_to_crash_logs): Return results directory as the location of crash logs.

  • Scripts/webkitpy/port/win.py:

(WinPort.path_to_crash_logs): Ditto.

Location:
trunk/Tools
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r216786 r216788  
     12017-05-12  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Unreviewed follow-up to r216776.
     4
     5        * Scripts/webkitpy/port/base.py:
     6        (Port.path_to_crash_logs): Raise not implemented.
     7        * Scripts/webkitpy/port/test.py:
     8        (TestPort.path_to_crash_logs): Return results directory as the location of crash logs.
     9        * Scripts/webkitpy/port/win.py:
     10        (WinPort.path_to_crash_logs): Ditto.
     11
    1122017-05-12  Alexey Proskuryakov  <ap@apple.com>
    213
  • trunk/Tools/Scripts/webkitpy/port/base.py

    r216776 r216788  
    13491349
    13501350    def path_to_crash_logs(self):
    1351         return self.results_directory()
     1351        raise NotImplementedError
    13521352
    13531353    def _get_crash_log(self, name, pid, stdout, stderr, newer_than):
  • trunk/Tools/Scripts/webkitpy/port/test.py

    r216776 r216788  
    464464        return TestDriver
    465465
     466    def path_to_crash_logs(self):
     467        return self.results_directory()
     468
    466469    def start_http_server(self, additional_dirs=None):
    467470        pass
  • trunk/Tools/Scripts/webkitpy/port/win.py

    r216776 r216788  
    370370        super(WinPort, self).clean_up_test_run()
    371371
     372    def path_to_crash_logs(self):
     373        return self.results_directory()
     374
    372375    def _get_crash_log(self, name, pid, stdout, stderr, newer_than, time_fn=None, sleep_fn=None, wait_for_log=True):
    373376        # Note that we do slow-spin here and wait, since it appears the time
Note: See TracChangeset for help on using the changeset viewer.