⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 252779 in webkit


Ignore:
Timestamp:
Nov 22, 2019, 9:51:26 AM (7 years ago)
Author:
Jonathan Bedard
Message:

run-webkit-tests: Failing to run spindump shouldn't be fatal
https://bugs.webkit.org/show_bug.cgi?id=204518
<rdar://problem/57397417>

Reviewed by Aakash Jain.

  • Scripts/webkitpy/port/darwin.py:

(DarwinPort.sample_process): Catch script error.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r252775 r252779  
     12019-11-22  Jonathan Bedard  <jbedard@apple.com>
     2
     3        run-webkit-tests: Failing to run spindump shouldn't be fatal
     4        https://bugs.webkit.org/show_bug.cgi?id=204518
     5        <rdar://problem/57397417>
     6
     7        Reviewed by Aakash Jain.
     8
     9        * Scripts/webkitpy/port/darwin.py:
     10        (DarwinPort.sample_process): Catch script error.
     11
    1122019-11-22  Paulo Matos  <pmatos@igalia.com>
    213
  • trunk/Tools/Scripts/webkitpy/port/darwin.py

    r252714 r252779  
    187187                host.filesystem.move_to_base_host(DarwinPort.tailspin_file_path(host, name, pid, str(tempdir)),
    188188                                                  DarwinPort.tailspin_file_path(self.host, name, pid, self.results_directory()))
    189             except IOError as e:
     189            except (IOError, ScriptError) as e:
    190190                _log.warning('Unable to symbolicate tailspin log of process:' + str(e))
    191191        else:  # Tailspin failed, run sample instead
Note: See TracChangeset for help on using the changeset viewer.