-
Notifications
You must be signed in to change notification settings - Fork 819
Open
Labels
DebugIssues related to the debugging functionality of the extension.Issues related to the debugging functionality of the extension.chore/testingissues related to bugs in test, CI setupissues related to bugs in test, CI setup
Milestone
Description
Fixing async/await bugs in the test (https://go-review.googlesource.com/c/vscode-go/+/306549) surfaced this issue:
1) Go Debug Adapter Tests (dlv-dap)
setBreakpoints
should set breakpoints during next:
AssertionError [ERR_ASSERTION]: 'step' == 'next cancelled'
+ expected - actual
-step
+next cancelled
at /workspace/node_modules/vscode-debugadapter-testsupport/lib/debugClient.js:275:20
at runMicrotasks (<anonymous>)
at processTicksAndRejections (internal/process/task_queues.js:97:5)
at async Promise.all (index 1)
2) Go Debug Adapter Tests (dlv-dap)
setBreakpoints
should set breakpoints during step out:
AssertionError [ERR_ASSERTION]: 'breakpoint' == 'next cancelled'
+ expected - actual
-breakpoint
+next cancelled
at /workspace/node_modules/vscode-debugadapter-testsupport/lib/debugClient.js:275:20
at runMicrotasks (<anonymous>)
at processTicksAndRejections (internal/process/task_queues.js:97:5)
at async Promise.all (index 1)
cc @suzmue
Metadata
Metadata
Assignees
Labels
DebugIssues related to the debugging functionality of the extension.Issues related to the debugging functionality of the extension.chore/testingissues related to bugs in test, CI setupissues related to bugs in test, CI setup