1
0
mirror of https://github.com/golang/go synced 2024-11-23 05:20:11 -07:00

net/rpc: skip TestGobError on Plan 9

LGTM=bradfitz
R=rsc, bradfitz
CC=aram, golang-codereviews
https://golang.org/cl/154140043
This commit is contained in:
David du Colombier 2014-10-09 11:12:03 +02:00
parent 64736accdb
commit e6295210b9

View File

@ -52,6 +52,9 @@ func (s *S) Recv(nul *struct{}, reply *R) error {
}
func TestGobError(t *testing.T) {
if runtime.GOOS == "plan9" {
t.Skip("skipping test; see http://golang.org/issue/8908")
}
defer func() {
err := recover()
if err == nil {