1
0
mirror of https://github.com/golang/go synced 2024-11-12 10:20:27 -07:00

runtime: skip TestCgoCallbackGC on dragonfly

Updates #11990.

Change-Id: I6c58923a1b5a3805acfb6e333e3c9e87f4edf4ba
Reviewed-on: https://go-review.googlesource.com/13050
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Mikio Hara 2015-08-03 12:43:25 +09:00
parent 9991227229
commit 5e15e28e0e

View File

@ -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 {