Skip to content

Commit

Permalink
Merge remote branch 'origin/master' into edge
Browse files Browse the repository at this point in the history
  • Loading branch information
automatic-merge committed Mar 20, 2024
2 parents 38685b3 + a71256c commit 4b3f236
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration/vscode/ada/test/suite/general/debug.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ suite('Debug Configurations', function () {
"ignoreFailures": true
}
],
"miDebuggerPath": "${getOrFindGdb() ?? '<undefined>'}"
"miDebuggerPath": "${getOrFindGdb()?.replace(/\\/g, '\\\\') ?? '<undefined>'}"
},
{
"name": "Ada: Attach debugger to running process - src/main1.adb",
Expand All @@ -50,7 +50,7 @@ suite('Debug Configurations', function () {
"program": "\${workspaceFolder}/obj/main1exec${exe}",
"processId": "\${command:pickProcess}",
"MIMode": "gdb",
"miDebuggerPath": "${getOrFindGdb() ?? '<undefined>'}"
"miDebuggerPath": "${getOrFindGdb()?.replace(/\\/g, '\\\\') ?? '<undefined>'}"
},
{
"type": "cppdbg",
Expand Down

0 comments on commit 4b3f236

Please sign in to comment.