[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] Disable complex tests on WindowsThe tests fail to compile there:```complex/main.c:4:16: error: expected ';' at end of declaration float complex complex_float = -1.5f + -2.5f * I;
[lldb] Disable complex tests on WindowsThe tests fail to compile there:```complex/main.c:4:16: error: expected ';' at end of declaration float complex complex_float = -1.5f + -2.5f * I; ^ ;```
[lldb][NFC] Add test for C99 and GCC complex typesLLDB has a lot of code for supporting complex types but we don't have a singletest for it. This adds some basic tests and documents the found bugs.