Skip to content

Commit 2f72921

Browse files
committed
test/integration/goDebug: disable a substitutePath test that times out
This test currently times out in the nightly release workflow. Disable while investigating. For #1043 Change-Id: I554213d0706f30f672d2e3cc4189772af63fd50f Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/278782 Run-TryBot: Hyang-Ah Hana Kim <[email protected]> TryBot-Result: kokoro <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> Trust: Suzy Mueller <[email protected]> Trust: Hyang-Ah Hana Kim <[email protected]>
1 parent 6e8bbba commit 2f72921

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/integration/goDebug.test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1404,7 +1404,9 @@ suite('Go Debug Adapter', function () {
14041404
await new Promise((resolve) => setTimeout(resolve, 2_000));
14051405
});
14061406

1407-
test('stopped for a breakpoint set during initialization using remotePath (remote attach)', async () => {
1407+
// Skip because it times out in nightly release workflow.
1408+
// BUG(https://github.com/golang/vscode-go/issues/1043)
1409+
test.skip('stopped for a breakpoint set during initialization using remotePath (remote attach)', async () => {
14081410
const FILE = path.join(helloWorldLocal, 'main.go');
14091411
const BREAKPOINT_LINE = 29;
14101412
const remoteProgram = await setUpRemoteProgram(remoteAttachConfig.port, server);

0 commit comments

Comments
 (0)