[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://r
[lldb][tests] Automatically call compute_mydir (NFC)Eliminate boilerplate of having each test manually assign to `mydir` by calling`compute_mydir` in lldbtest.py.Differential Revision: https://reviews.llvm.org/D128077
show more ...
Fix a thinko in the parsing of substitutions in CommandObjectRegexCommand.The old code incorrectly calculated the start position for the searchfor the third (and subsequent) instance of a particul
Fix a thinko in the parsing of substitutions in CommandObjectRegexCommand.The old code incorrectly calculated the start position for the searchfor the third (and subsequent) instance of a particular substitutionpattern (e.g. %1).I also added a few test cases for this parsing covering this failure.