service/dap: disable TestFatalThrowBreakpoint for Go 1.17 (#2614)

* service/dap: disable TestFatalThrowBreakpoint for Go 1.17
This commit is contained in:
Suzy Mueller 2021-07-23 11:12:57 -06:00 committed by GitHub
parent 39274f6028
commit f1edc45f75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3689,6 +3689,10 @@ func TestPanicBreakpointOnNext(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) {
runDebugSessionWithBPs(t, client, "launch",
// Launch
@ -4574,7 +4578,6 @@ func TestOptionalNotYetImplementedResponses(t *testing.T) {
client.RestartRequest()
expectNotYetImplemented("restart")
client.SetExpressionRequest()
expectNotYetImplemented("setExpression")