[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 ...
[formatters] Add a deque formatter for libstdcpp and fix the libcxx oneThis adds the formatters for libstdcpp's deque as a pythonimplementation. It adds comprehensive tests for the two differents
[formatters] Add a deque formatter for libstdcpp and fix the libcxx oneThis adds the formatters for libstdcpp's deque as a pythonimplementation. It adds comprehensive tests for the two differentstorage strategies deque uses. Besides that, this fixes a couple of bugsin the libcxx implementation. Finally, both implementation run againstthe same tests.This is a minor improvement on top of Danil Stefaniuc's formatter.