[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] Remove support for replaying the test suite from a reproducerThis patch removes the infrastructure to replay the test suite from areproducer, as well as the modifications made to the indivi
[lldb] Remove support for replaying the test suite from a reproducerThis patch removes the infrastructure to replay the test suite from areproducer, as well as the modifications made to the individual tests.
[FileCollector] Fix that the file system case-sensitivity check was invertedreal_path returns an `std::error_code` which evaluates to `true` in case anerror happens and `false` if not. This code w
[FileCollector] Fix that the file system case-sensitivity check was invertedreal_path returns an `std::error_code` which evaluates to `true` in case anerror happens and `false` if not. This code was checking the inverse, socase-insensitive file systems ended up being detected as case sensitive.Tested using an LLDB reproducer test as we anyway need a real file system andalso some matching logic to detect whether the respective file system iscase-sensitive (which the test is doing via some Python checks that we can'treally emulate with the usual FileCheck logic).Fixes rdar://67003004Reviewed By: JDevlieghereDifferential Revision: https://reviews.llvm.org/D96795