mirror of https://github.com/golang/go.git
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:
parent
9991227229
commit
5e15e28e0e
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue