From b4538d7aaa1a600dc1d3724f9aecb5c8039e1324 Mon Sep 17 00:00:00 2001 From: David du Colombier <0intro@gmail.com> Date: Tue, 10 May 2016 07:43:17 +0000 Subject: [PATCH] Revert "os: enable TestGetppid on Plan 9" This reverts commit a677724edfc465193d2f79ee48d2c06defbc916b. Change-Id: I6a54ac26a6deca5b2a39ec9f899469a88b543d3d Reviewed-on: https://go-review.googlesource.com/22980 Reviewed-by: Brad Fitzpatrick --- src/os/os_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/os/os_test.go b/src/os/os_test.go index 545bc1c8b0..baa2f07fd2 100644 --- a/src/os/os_test.go +++ b/src/os/os_test.go @@ -1705,6 +1705,11 @@ func TestKillStartProcess(t *testing.T) { } func TestGetppid(t *testing.T) { + if runtime.GOOS == "plan9" { + // TODO: golang.org/issue/8206 + t.Skipf("skipping test on plan9; see issue 8206") + } + testenv.MustHaveExec(t) if Getenv("GO_WANT_HELPER_PROCESS") == "1" { -- 2.50.0