Commit be0079ab authored by Alex Brainman's avatar Alex Brainman

os: disable TestGetppid on plan9

Fixes build.

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/105140047
parent 6f6f1bd0
......@@ -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" {
......
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