[Lldb-commits] [PATCH] D112988: [lldb] fix --source-quietly

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Tue Nov 2 10:12:34 PDT 2021


jingham added a comment.

This is great, thanks!

There was one typo I pointed out, and it would be good to add a test.  I'm sure this worked at some point, but wasn't tested so it was broken without anybody noticing.  We want to make sure that doesn't happen again... It should be easy to write a Shell test case that just runs an lldb with the -Q option, sources a file and checks that you don't see output from it.



================
Comment at: lldb/tools/driver/Options.td:117
 def source_quietly: F<"source-quietly">,
-  HelpText<"Tells the debugger to execute this one-line lldb command before any file has been loaded.">,
+  HelpText<"Tells the debugger not to echo commands while sourcing filles or one-line commands provided on the command line.">,
   Group<grp_command>;
----------------
filles -> files


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D112988/new/

https://reviews.llvm.org/D112988



More information about the lldb-commits mailing list