service/dap: disable TestFatalThrowBreakpoint for Go 1.17 (#2614)
* service/dap: disable TestFatalThrowBreakpoint for Go 1.17
This commit is contained in:
parent
39274f6028
commit
f1edc45f75
@ -3689,6 +3689,10 @@ func TestPanicBreakpointOnNext(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestFatalThrowBreakpoint(t *testing.T) {
|
func TestFatalThrowBreakpoint(t *testing.T) {
|
||||||
|
// This is not currently flaky for Go 1.17 see https://github.com/golang/go/issues/46425.
|
||||||
|
if goversion.VersionAfterOrEqual(runtime.Version(), 1, 17) {
|
||||||
|
t.Skip()
|
||||||
|
}
|
||||||
runTest(t, "fatalerror", func(client *daptest.Client, fixture protest.Fixture) {
|
runTest(t, "fatalerror", func(client *daptest.Client, fixture protest.Fixture) {
|
||||||
runDebugSessionWithBPs(t, client, "launch",
|
runDebugSessionWithBPs(t, client, "launch",
|
||||||
// Launch
|
// Launch
|
||||||
@ -4574,7 +4578,6 @@ func TestOptionalNotYetImplementedResponses(t *testing.T) {
|
|||||||
client.RestartRequest()
|
client.RestartRequest()
|
||||||
expectNotYetImplemented("restart")
|
expectNotYetImplemented("restart")
|
||||||
|
|
||||||
|
|
||||||
client.SetExpressionRequest()
|
client.SetExpressionRequest()
|
||||||
expectNotYetImplemented("setExpression")
|
expectNotYetImplemented("setExpression")
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user