[Lldb-commits] [PATCH] D43686: Add "lldb-test breakpoint" command and convert the case-sensitivity test to use it

Jim Ingham via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 23 11:17:09 PST 2018


jingham added a comment.

This test has the advantage over running lldb in batch mode that it isolates the tests you write using it from the output format of the break command.

The lldb test suite used to check the output of break all over the place, and that meant when I went to change that output to add some info and many tests broke for no good reason.  That's why I changed all the tests to use the lldbutil.run_break_set_* commands so I wouldn't have to deal with this again.  Not having to do that for these tests some time in the future to me justifies the effort of supporting this small amount of code.


https://reviews.llvm.org/D43686





More information about the lldb-commits mailing list