diff --git a/go/ssa/interp/interp_test.go b/go/ssa/interp/interp_test.go index a216ac79f4..d2fe6d3e97 100644 --- a/go/ssa/interp/interp_test.go +++ b/go/ssa/interp/interp_test.go @@ -125,10 +125,10 @@ var testdataTests = []string{ } func run(t *testing.T, input string) bool { - // The recover2 test case is broken when run against tip. See golang/go#34089. - // TODO(matloob): Figure out what's going on or fix this before go1.14 is released. - if filepath.Base(input) == "recover2.go" && strings.HasPrefix(runtime.Version(), "devel") { - t.Skip("The recover2.go test is broken in tip. See golang.org/issue/34089.") + // The recover2 test case is broken on Go 1.14+. See golang/go#34089. + // TODO(matloob): Fix this. + if filepath.Base(input) == "recover2.go" { + t.Skip("The recover2.go test is broken in go1.14+. See golang.org/issue/34089.") } t.Logf("Input: %s\n", input)