From: Alex Brainman Date: Sat, 14 Jun 2014 06:47:40 +0000 (+1000) Subject: os: disable TestGetppid on plan9 X-Git-Tag: go1.4beta1~1287 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=be0079abe1eff5b4d123a249ce6a14da279217a0;p=gostls13.git os: disable TestGetppid on plan9 Fixes build. LGTM=dave R=golang-codereviews, dave CC=golang-codereviews https://golang.org/cl/105140047 --- diff --git a/src/pkg/os/os_test.go b/src/pkg/os/os_test.go index baf913c2f0..0b43766dd9 100644 --- a/src/pkg/os/os_test.go +++ b/src/pkg/os/os_test.go @@ -1294,8 +1294,12 @@ func TestKillStartProcess(t *testing.T) { } func TestGetppid(t *testing.T) { - if runtime.GOOS == "nacl" { + switch runtime.GOOS { + case "nacl": t.Skip("skipping on nacl") + case "plan9": + // TODO: golang.org/issue/8206 + t.Skipf("skipping test on plan9; see issue 8206") } if Getenv("GO_WANT_HELPER_PROCESS") == "1" {