[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] Add deref support and tests to shared_ptr syntheticAdd `frame variable` dereference suppport to libc++ `std::shared_ptr`.This change allows for commands like `v *thing_sp` and `v thing_sp-
[lldb] Add deref support and tests to shared_ptr syntheticAdd `frame variable` dereference suppport to libc++ `std::shared_ptr`.This change allows for commands like `v *thing_sp` and `v thing_sp->m_id`. Thesecommands now work the same way they do with raw pointers. This is done by adding anunaccounted for child member named `$$dereference$$`.Also, add API tests for `std::shared_ptr`, previously there were none.Differential Revision: https://reviews.llvm.org/D97165