Index: lldb/examples/python/crashlog.py =================================================================== --- lldb/examples/python/crashlog.py +++ lldb/examples/python/crashlog.py @@ -1436,6 +1436,10 @@ print() for thread in crash_log.threads: + if options.crashed_only and not ( + thread.crashed or thread.app_specific_backtrace + ): + continue thread.dump_symbolicated(crash_log, options) print()