Commit 5e15e28e authored by Mikio Hara's avatar Mikio Hara

runtime: skip TestCgoCallbackGC on dragonfly

Updates #11990.

Change-Id: I6c58923a1b5a3805acfb6e333e3c9e87f4edf4ba
Reviewed-on: https://go-review.googlesource.com/13050Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent 99912272
......@@ -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 {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment