[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 ...
[LLDB] libcxx summary formatters for std::string_viewWhen printing a std::string_view, print the referenced string as thesummary. Support string_view, u32string_view, u16string_view andwstring_vi
[LLDB] libcxx summary formatters for std::string_viewWhen printing a std::string_view, print the referenced string as thesummary. Support string_view, u32string_view, u16string_view andwstring_view, as we do for std::string and friends.This is based on the existing fomratter for std::string, and justextracts the data and length members, pushing them through the existingstring formatter.In testing this, a "FIXME" was corrected for printing of non-ASCII emptyvalues. Previously, the "u", 'U" etc. prefixes were not printed forbasic_string<> types that were not char. This is trivial to resolve byprinting the prefix before the "".Differential revision: https://reviews.llvm.org/D112222