diff options
| author | David du Colombier <0intro@gmail.com> | 2016-10-26 08:50:23 +0200 |
|---|---|---|
| committer | Brad Fitzpatrick <bradfitz@golang.org> | 2016-10-26 18:05:24 +0000 |
| commit | 8e4e103a00c88f297b7f28360d3d021a2e5bb865 (patch) | |
| tree | 36032d3d31eb043838101fc22a765e20df8cb598 /src | |
| parent | f46324cffbf87b0a6334e09f72e5f73fb79f5a73 (diff) | |
| download | go-8e4e103a00c88f297b7f28360d3d021a2e5bb865.tar.xz | |
net/rpc: enable TestGobError on Plan 9
This issue has been fixed in CL 31271.
Fixes #8908.
Change-Id: I8015490e2d992e09c664560e42188315e0e0669e
Reviewed-on: https://go-review.googlesource.com/32150
Run-TryBot: David du Colombier <0intro@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/rpc/client_test.go | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/net/rpc/client_test.go b/src/net/rpc/client_test.go index ba11ff8586..d116d2acc9 100644 --- a/src/net/rpc/client_test.go +++ b/src/net/rpc/client_test.go @@ -8,7 +8,6 @@ import ( "errors" "fmt" "net" - "runtime" "strings" "testing" ) @@ -53,9 +52,6 @@ func (s *S) Recv(nul *struct{}, reply *R) error { } func TestGobError(t *testing.T) { - if runtime.GOOS == "plan9" { - t.Skip("skipping test; see https://golang.org/issue/8908") - } defer func() { err := recover() if err == nil { |
