This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rG21a597c31cb8: [lldb/crashlog] Fix module loading for crashed thread behaviour (authored by mib).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D157850/new/ https://reviews.llvm.org/D157850 Files: lldb/examples/python/crashlog.py Index: lldb/examples/python/crashlog.py =================================================================== --- lldb/examples/python/crashlog.py +++ lldb/examples/python/crashlog.py @@ -1590,10 +1590,10 @@ arg_parser.add_argument( "--crashed-only", "-c", - action="store_true", + action=argparse.BooleanOptionalAction, dest="crashed_only", help="only symbolicate the crashed thread", - default=False, + default=True, ) arg_parser.add_argument( "--disasm-depth",
Index: lldb/examples/python/crashlog.py =================================================================== --- lldb/examples/python/crashlog.py +++ lldb/examples/python/crashlog.py @@ -1590,10 +1590,10 @@ arg_parser.add_argument( "--crashed-only", "-c", - action="store_true", + action=argparse.BooleanOptionalAction, dest="crashed_only", help="only symbolicate the crashed thread", - default=False, + default=True, ) arg_parser.add_argument( "--disasm-depth",
_______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits