]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: skip TestCgoCallbackGC on dragonfly
authorMikio Hara <mikioh.mikioh@gmail.com>
Mon, 3 Aug 2015 03:43:25 +0000 (12:43 +0900)
committerMikio Hara <mikioh.mikioh@gmail.com>
Mon, 3 Aug 2015 04:41:48 +0000 (04:41 +0000)
Updates #11990.

Change-Id: I6c58923a1b5a3805acfb6e333e3c9e87f4edf4ba
Reviewed-on: https://go-review.googlesource.com/13050
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/crash_cgo_test.go

index d1322340ca6601d46dc257169c2d8d07f92195ec..2e65e4c7543378549bc6316bd206fc0525cb8f28 100644 (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 {