[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 TestVSCode_coreFile if no x86 target support
[lldb-vscode] Fix coredump load source mapping for first fileSetSourceMapFromArguments is called after the core is loaded. This meansthat the source file for the crashing code won't have the sourc
[lldb-vscode] Fix coredump load source mapping for first fileSetSourceMapFromArguments is called after the core is loaded. This meansthat the source file for the crashing code won't have the source map applied.Move the call to SetSourceMapFromArguments in request_attach to just afterthe call to RunInitCommands, matching request_launch behavior.Reviewed By: clayborg, wallaceDifferential Revision: https://reviews.llvm.org/D112834
[lldb-vscode] Add an option for loading core filesSummary:Currently loading core files on lldb-vscode is broken because there's a check in the attach workflow that asserts that the PID is valid, w
[lldb-vscode] Add an option for loading core filesSummary:Currently loading core files on lldb-vscode is broken because there's a check in the attach workflow that asserts that the PID is valid, which of course fails for this case.Hence, I'm adding a "coreFile" argument for the attach request, which does the work correctly.I don't know how to test it effectively so that it runs on the buildbots and the debugger can in fact makes sense of it. Anyway, the change has been relatively simple.Reviewers: labath, clayborgSubscribers: lldb-commitsTags: #lldbDifferential Revision: https://reviews.llvm.org/D78839