From 6d6acc737a500fb7be5a831f4c506c114d439e81 Mon Sep 17 00:00:00 2001 From: Nikita Smith Date: Tue, 5 May 2026 14:35:25 -0700 Subject: [PATCH] set torture as launch target --- launch.vs.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/launch.vs.json b/launch.vs.json index f92b78e1..1b86c5d8 100644 --- a/launch.vs.json +++ b/launch.vs.json @@ -7,21 +7,20 @@ "name": "raddbg", "request": "launch", "project": "c://windows//system32//cmd.exe", - "program": "build/raddbg", - "args": [ "-no_stdout_buffer" ], + "cwd": "build/", + "program": "torture", + "args": [ "basic_stepping_test-c" ], "stopAtEntry": false, - "cwd": ".", "environment": [], - "externalConsole": true, + "externalConsole": false, "pipeTransport": { "pipeCwd": "${workspaceRoot}", "pipeProgram": "wsl", "pipeArgs": [ "${debuggerCommand}" ] }, - "setupCommands": - [ - { "text": "handle SIGUSR1 nostop" } - ], + "setupCommands": [ + { "text": "handle SIGUSR1 nostop" } + ], "MIMode": "gdb" } ]