[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] Replace unneeded use of Foundation with ObjectiveC in tests (NFC)When referencing `NSObject`, it's enough to import `objc/NSObject.h`. Importing `Foundation` is unnecessary in these cases.
[lldb] Replace unneeded use of Foundation with ObjectiveC in tests (NFC)When referencing `NSObject`, it's enough to import `objc/NSObject.h`. Importing `Foundation` is unnecessary in these cases.Differential Revision: https://reviews.llvm.org/D99867
[lldb][NFC] Add a test case for Objective-C properties with conflicting namesThis is an LLDB test for the ASTImporter crash that got fixed in D99077.The test is using Clang modules for the propert
[lldb][NFC] Add a test case for Objective-C properties with conflicting namesThis is an LLDB test for the ASTImporter crash that got fixed in D99077.The test is using Clang modules for the properties as it seems the conflictingnames are not actually correctly handled when generating debug information(only the first property is emitted and the second one is ignored in the currentclang ToT).