aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/coro_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/coro_test.go')
-rw-r--r--src/runtime/coro_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/runtime/coro_test.go b/src/runtime/coro_test.go
index 10b5e1ea08..ddc734a17f 100644
--- a/src/runtime/coro_test.go
+++ b/src/runtime/coro_test.go
@@ -5,6 +5,7 @@
package runtime_test
import (
+ "internal/race"
"internal/testenv"
"runtime"
"strings"
@@ -35,6 +36,9 @@ func TestCoroCgoCallback(t *testing.T) {
if runtime.GOOS == "windows" {
t.Skip("coro cgo callback tests not supported on Windows")
}
+ if runtime.GOOS == "freebsd" && race.Enabled {
+ t.Skipf("race + cgo freebsd not supported. See https://go.dev/issue/73788.")
+ }
for _, test := range []string{
"CoroCgoIterCallback",
"CoroCgoIterCallbackYield",