diff --git a/src/runtime/crash_cgo_test.go b/src/runtime/crash_cgo_test.go index d1322340ca..2e65e4c754 100644 --- a/src/runtime/crash_cgo_test.go +++ b/src/runtime/crash_cgo_test.go @@ -40,6 +40,9 @@ func TestCgoCallbackGC(t *testing.T) { if runtime.GOOS == "plan9" || runtime.GOOS == "windows" { t.Skipf("no pthreads on %s", runtime.GOOS) } + if testing.Short() && runtime.GOOS == "dragonfly" { + t.Skip("see golang.org/issue/11990") + } got := executeTest(t, cgoCallbackGCSource, nil) want := "OK\n" if got != want {