Changeset 240483 in webkit


Ignore:
Timestamp:
Jan 25, 2019 10:48:29 AM (5 years ago)
Author:
Jonathan Bedard
Message:

webkitpy: Missing PID in crashlog name should not be fatal (Follow-up fix)
https://bugs.webkit.org/show_bug.cgi?id=193771

Unreviewed infrastructure fix.

  • Scripts/webkitpy/port/darwin.py:

(DarwinPort._merge_crash_logs): Correct syntax for catching multiple exception types.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r240480 r240483  
     12019-01-25  Jonathan Bedard  <jbedard@apple.com>
     2
     3        webkitpy: Missing PID in crashlog name should not be fatal (Follow-up fix)
     4        https://bugs.webkit.org/show_bug.cgi?id=193771
     5
     6        Unreviewed infrastructure fix.
     7
     8        * Scripts/webkitpy/port/darwin.py:
     9        (DarwinPort._merge_crash_logs): Correct syntax for catching multiple exception types.
     10
    1112019-01-25  Alexey Proskuryakov  <ap@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/port/darwin.py

    r240440 r240483  
    105105                    process_name = test.split('-')[0]
    106106                    pid = int(test.split('-')[1])
    107             except IndexError, ValueError:
     107            except (IndexError, ValueError):
    108108                continue
    109109            if not any(entry[1] == process_name and entry[2] == pid for entry in crashed_processes):
Note: See TracChangeset for help on using the changeset viewer.