Skip to content

Commit e629521

Browse files
committed
net/rpc: skip TestGobError on Plan 9
LGTM=bradfitz R=rsc, bradfitz CC=aram, golang-codereviews https://golang.org/cl/154140043
1 parent 64736ac commit e629521

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/net/rpc/client_test.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ func (s *S) Recv(nul *struct{}, reply *R) error {
5252
}
5353

5454
func TestGobError(t *testing.T) {
55+
if runtime.GOOS == "plan9" {
56+
t.Skip("skipping test; see http://golang.org/issue/8908")
57+
}
5558
defer func() {
5659
err := recover()
5760
if err == nil {

0 commit comments

Comments
 (0)