Skip to content

Commit 3076936

Browse files
committed
[lldb/crashlog] Update incorrect help message for --no-crashed-only 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)
1 parent 84491ad commit 3076936

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lldb/examples/python/crashlog.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1645,7 +1645,8 @@ def CreateSymbolicateCrashLogOptions(
16451645
"--no-crashed-only",
16461646
action="store_false",
16471647
dest="crashed_only",
1648-
help="do not symbolicate the crashed thread",
1648+
help="in batch mode, symbolicate all threads, not only the crashed one",
1649+
default=False,
16491650
)
16501651
arg_parser.add_argument(
16511652
"--disasm-depth",

0 commit comments

Comments
 (0)