aboutsummaryrefslogtreecommitdiff
path: root/src/runtime/crash_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/runtime/crash_test.go')
-rw-r--r--src/runtime/crash_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/runtime/crash_test.go b/src/runtime/crash_test.go
index e691746598..63c4426806 100644
--- a/src/runtime/crash_test.go
+++ b/src/runtime/crash_test.go
@@ -229,6 +229,9 @@ func testCrashHandler(t *testing.T, cgo bool) {
}
var output string
if cgo {
+ if runtime.GOOS == "freebsd" && race.Enabled {
+ t.Skipf("race + cgo freebsd not supported. See https://go.dev/issue/73788.")
+ }
output = runTestProg(t, "testprogcgo", "Crash")
} else {
output = runTestProg(t, "testprog", "Crash")