Debugger not exiting on exception when set to not debug #655
Unanswered
adam-fowler
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am currently implementing a
vscode.TestController
extension for Swift and usingvscode.debug.startDebugging
to trigger running the test launch configuration. You can set up debug and non-debug profiles for aTestController
. In the situation where I am running a non-debug profile I am settingnoDebug
in theDebugSessionOptions
when callingstartDebugging
This is all fine until one of the tests crashes. In this situation CodeLLDB stops and waits for input from the user which is slightly confusing as I told the debugger I didn't want to debug the test executable.
Is there anyway to get CodeLLDB to exit when it hits an exception in this case? Or am I going to have to run the test executable outside of the debugger?
Beta Was this translation helpful? Give feedback.
All reactions