From: Cuong Manh Le Date: Fri, 26 Jul 2024 17:09:04 +0000 (+0700) Subject: runtime: remove darwin-amd64-10_14 builder check X-Git-Tag: go1.24rc1~1389 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=fac95803ebe49b95fe93f9f8034bace69cb60119;p=gostls13.git runtime: remove darwin-amd64-10_14 builder check By now macOS 11 is the minimum required version. Updates #43926 Change-Id: I13716e2e521c26bd9997f0ea1b717cf72ab7e47c Reviewed-on: https://go-review.googlesource.com/c/go/+/601276 LUCI-TryBot-Result: Go LUCI Reviewed-by: Cherry Mui Auto-Submit: Cuong Manh Le Reviewed-by: Dmitri Shuralyov Reviewed-by: Dmitri Shuralyov --- diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go index f9fbdd8f1c..57111c9aef 100644 --- a/src/runtime/crash_cgo_test.go +++ b/src/runtime/crash_cgo_test.go @@ -65,10 +65,6 @@ func TestCgoCallbackGC(t *testing.T) { t.Skip("too slow for mips64x builders") } } - if testenv.Builder() == "darwin-amd64-10_14" { - // TODO(#23011): When the 10.14 builders are gone, remove this skip. - t.Skip("skipping due to platform bug on macOS 10.14; see https://golang.org/issue/43926") - } got := runTestProg(t, "testprogcgo", "CgoCallbackGC") want := "OK\n" if got != want {