[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] Skip a bunch of tests that shouldn't run remotelySkip a bunch of tests that don't really make sense to run remotely.
[lldb] Replace asserts on .Success() with assertSuccess()Replace forms of `assertTrue(err.Success())` with `assertSuccess(err)` (added in D82759).* `assertSuccess` prints out the error's message
[lldb] Replace asserts on .Success() with assertSuccess()Replace forms of `assertTrue(err.Success())` with `assertSuccess(err)` (added in D82759).* `assertSuccess` prints out the error's message* `assertSuccess` expresses explicit higher level semantics, both to the reader and for test failure output* `assertSuccess` seems not to be well known, using it where possible will help spread knowledge* `assertSuccess` statements are more succinctDifferential Revision: https://reviews.llvm.org/D119616
[lldb/test] Skip TestSBModule unless darwinSigned-off-by: Med Ismail Bennani <[email protected]>
Revert "[lldb/test] Try to fix TestSBModule failure"This reverts commit 326516448c839d8f9cc515b20a34d0f3a6ee2374.
[lldb/test] Try to fix TestSBModule failureThis should fix https://lab.llvm.org/buildbot/#/builders/68/builds/25571Signed-off-by: Med Ismail Bennani <[email protected]>
[lldb/API] Add ability to check if module is backed by a file on diskThis patch introduces a new SBAPI method: `SBModule::IsFileBacked`As the name suggests, it tells the user if the module's obje
[lldb/API] Add ability to check if module is backed by a file on diskThis patch introduces a new SBAPI method: `SBModule::IsFileBacked`As the name suggests, it tells the user if the module's object file ison disk or in memory.rdar://68538278Differential Revision: https://reviews.llvm.org/D118261Signed-off-by: Med Ismail Bennani <[email protected]>