Skip to content

Commit a78c009

Browse files
committed
Merge branch 'topic/fix-test-win' into 'master'
Fix vscode task test on Windows See merge request eng/ide/ada_language_server!1420
2 parents c1c9412 + 55dac2e commit a78c009

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

integration/vscode/ada/test/suite/general/tasks.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ suite('GPR Tasks Provider', function () {
140140
// via project attributes
141141
const expectedCmd = `gprbuild -P ${def.configuration.projectFile} ${
142142
def.configuration.main ?? ''
143-
} -cargs -gnatef && obj/main1exec`;
143+
} -cargs -gnatef && obj/main1exec${process.platform == 'win32' ? '.exe' : ''}`;
144144

145145
assert.strictEqual(actualCmd, expectedCmd);
146146
});

0 commit comments

Comments
 (0)