[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 ...
Revert "[LLDB] Skip TestVSCode_disconnect.test_launch arm/linux"This reverts commit 73cf85e527f69c495daece7c74743b9073d4717c.
Fix cleanup error in TestVSCode_disconnect.test_launchTestVSCode_disconnect.test_launch fails with clean up error becausedisconnect gets called twice once from the test case and once fromthe tear
Fix cleanup error in TestVSCode_disconnect.test_launchTestVSCode_disconnect.test_launch fails with clean up error becausedisconnect gets called twice once from the test case and once fromthe tear down hook.This patch disables disconnect after its been called from test_launchReviewed By: clayborgDifferential Revision: https://reviews.llvm.org/D99491
[LLDB] Skip TestVSCode_disconnect.test_launch arm/linuxTestVSCode_disconnect.test_launch hangs in tear down and times outArm linux. I am marking it skipped for the buildbot while lookinginto fail
[LLDB] Skip TestVSCode_disconnect.test_launch arm/linuxTestVSCode_disconnect.test_launch hangs in tear down and times outArm linux. I am marking it skipped for the buildbot while lookinginto failure.
[lldb] [test] Update test status for NetBSD
[lldb/Test] Skip TestVSCode_disconnect on DarwinIt's failing on the sanitized bot on GreenDragon.
[vscode] set default values for terminateDebuggee for the disconnect requestSummary:Recently I've noticed that VSCode sometimes doesn't send the terminateDebuggee flag within the disconnectRequest
[vscode] set default values for terminateDebuggee for the disconnect requestSummary:Recently I've noticed that VSCode sometimes doesn't send the terminateDebuggee flag within the disconnectRequest,even though lldb-vscode sets the terminateDebuggee capability correctly.This has been causing that inferiors don't die after the debug session ends, and many users have reported issues because of this.An easy way to mitigate this is to set better default values for the terminateDebuggee field in the disconnect request.I'm assuming that for a launch request, the default will be true, and for attach it'll be false.Reviewers: clayborg, labath, aadsmSubscribers: lldb-commitsTags: #lldbDifferential Revision: https://reviews.llvm.org/D81200