Commit e6295210 authored by David du Colombier's avatar David du Colombier

net/rpc: skip TestGobError on Plan 9

LGTM=bradfitz
R=rsc, bradfitz
CC=aram, golang-codereviews
https://golang.org/cl/154140043
parent 64736acc
...@@ -52,6 +52,9 @@ func (s *S) Recv(nul *struct{}, reply *R) error { ...@@ -52,6 +52,9 @@ func (s *S) Recv(nul *struct{}, reply *R) error {
} }
func TestGobError(t *testing.T) { func TestGobError(t *testing.T) {
if runtime.GOOS == "plan9" {
t.Skip("skipping test; see http://golang.org/issue/8908")
}
defer func() { defer func() {
err := recover() err := recover()
if err == nil { if err == nil {
......
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