Skip to content

Commit 8585bf7

Browse files
authored
[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 <[email protected]>
1 parent 22c59e0 commit 8585bf7

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
@@ -1649,7 +1649,8 @@ def CreateSymbolicateCrashLogOptions(
16491649
"--no-crashed-only",
16501650
action="store_false",
16511651
dest="crashed_only",
1652-
help="do not symbolicate the crashed thread",
1652+
help="in batch mode, symbolicate all threads, not only the crashed one",
1653+
default=False,
16531654
)
16541655
arg_parser.add_argument(
16551656
"--disasm-depth",

0 commit comments

Comments
 (0)