Commit 515e53a0 authored by Mikio Hara's avatar Mikio Hara

net: skip TestProtocolDialError on solaris

Unfortunately there's no simple, easy way to make Dial{TCP,UDP} fail
consistently across all platforms. Fow now we skip the test on Solaris.

Change-Id: Ib3c55f670ac6a174fe9ea682dac7aab96b1e9dfb
Reviewed-on: https://go-review.googlesource.com/11058Reviewed-by: 's avatarIan Lance Taylor <iant@golang.org>
parent d00e7ad6
......@@ -161,7 +161,7 @@ func TestDialError(t *testing.T) {
func TestProtocolDialError(t *testing.T) {
switch runtime.GOOS {
case "nacl":
case "nacl", "solaris":
t.Skipf("not supported on %s", runtime.GOOS)
}
......
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