Changeset 252779 in webkit
- Timestamp:
- Nov 22, 2019, 9:51:26 AM (7 years ago)
- Location:
- trunk/Tools
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Scripts/webkitpy/port/darwin.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Tools/ChangeLog
r252775 r252779 1 2019-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 1 12 2019-11-22 Paulo Matos <pmatos@igalia.com> 2 13 -
trunk/Tools/Scripts/webkitpy/port/darwin.py
r252714 r252779 187 187 host.filesystem.move_to_base_host(DarwinPort.tailspin_file_path(host, name, pid, str(tempdir)), 188 188 DarwinPort.tailspin_file_path(self.host, name, pid, self.results_directory())) 189 except IOErroras e:189 except (IOError, ScriptError) as e: 190 190 _log.warning('Unable to symbolicate tailspin log of process:' + str(e)) 191 191 else: # Tailspin failed, run sample instead
Note:
See TracChangeset
for help on using the changeset viewer.