Skip to content

Commit

Permalink
[lldb/crashlog] Update incorrect help message for --no-crashed-only
Browse files Browse the repository at this point in the history
… option (llvm#91162)

This patch rephrases the crashlog `--no-crashed-only` option help
message. This option is mainly used in batch mode to symbolicate and
dump all the threads backtraces, instead of only doing it for the
crashed thread which is the default behavior.

rdar://127391524

Signed-off-by: Med Ismail Bennani <ismail@bennani.ma>
(cherry picked from commit 8585bf7)
  • Loading branch information
medismailben committed May 14, 2024
1 parent 84491ad commit 3076936
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lldb/examples/python/crashlog.py
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,8 @@ def CreateSymbolicateCrashLogOptions(
"--no-crashed-only",
action="store_false",
dest="crashed_only",
help="do not symbolicate the crashed thread",
help="in batch mode, symbolicate all threads, not only the crashed one",
default=False,
)
arg_parser.add_argument(
"--disasm-depth",
Expand Down

0 comments on commit 3076936

Please sign in to comment.