Changeset 202604 in webkit


Ignore:
Timestamp:
Jun 28, 2016 7:26:54 PM (8 years ago)
Author:
msaboff@apple.com
Message:

btjs no longer accepts optional frame count argument
https://bugs.webkit.org/show_bug.cgi?id=159235

Reviewed by Saam Barati.

Fix the detection of optional backtrace-depth parameter to use the length
of the command.

  • lldb/lldb_webkit.py:

(btjs):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r202603 r202604  
     12016-06-28  Michael Saboff  <msaboff@apple.com>
     2
     3        btjs no longer accepts optional frame count argument
     4        https://bugs.webkit.org/show_bug.cgi?id=159235
     5
     6        Reviewed by Saam Barati.
     7
     8        Fix the detection of optional backtrace-depth parameter to use the length
     9        of the command.
     10
     11        * lldb/lldb_webkit.py:
     12        (btjs):
     13
    1142016-06-28  Jon Lee  <jonlee@apple.com>
    215
  • trunk/Tools/lldb/lldb_webkit.py

    r195444 r202604  
    122122    backtraceDepth = thread.GetNumFrames()
    123123
    124     if len(command) == 1:
     124    if len(command) > 0:
    125125        try:
    126126            backtraceDepth = int(command)
Note: See TracChangeset for help on using the changeset viewer.