Skip to content

Commit

Permalink
Merge branch 'topic/fix-tests-win' into 'master'
Browse files Browse the repository at this point in the history
Second attempt at fixing tests on Windows

See merge request eng/ide/ada_language_server!1515
  • Loading branch information
eliericha committed Mar 19, 2024
2 parents 1a8c338 + 411da3c commit a71256c
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()?.replace(/\\/, '\\') ?? '<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()?.replace(/\\/, '\\') ?? '<undefined>'}"
"miDebuggerPath": "${getOrFindGdb()?.replace(/\\/g, '\\\\') ?? '<undefined>'}"
},
{
"type": "cppdbg",
Expand Down

0 comments on commit a71256c

Please sign in to comment.