From: Mikio Hara Date: Mon, 3 Aug 2015 03:43:25 +0000 (+0900) Subject: runtime: skip TestCgoCallbackGC on dragonfly X-Git-Tag: go1.5rc1~50 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=5e15e28e0ed0c70a9c97310d3a7b408cae8f2e23;p=gostls13.git runtime: skip TestCgoCallbackGC on dragonfly Updates #11990. Change-Id: I6c58923a1b5a3805acfb6e333e3c9e87f4edf4ba Reviewed-on: https://go-review.googlesource.com/13050 Reviewed-by: Ian Lance Taylor --- 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 {