commit | 9442c4429a7fe18aba304f8d239c4ca10ab598ad | [log] [tgz] |
---|---|---|
author | Mikio Hara <mikioh.mikioh@gmail.com> | Tue Mar 06 15:41:17 2012 +0900 |
committer | Mikio Hara <mikioh.mikioh@gmail.com> | Tue Mar 06 15:41:17 2012 +0900 |
tree | fa3eae28e22b4eab369bdc90ed4d2bd561200cae | |
parent | 932c8ddba158a91056eba87045bb6d5ddbeb39f7 [diff] [blame] |
net: add skip message to test R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5753048
diff --git a/src/pkg/net/udp_test.go b/src/pkg/net/udp_test.go index ea5fad4..f80d3b5 100644 --- a/src/pkg/net/udp_test.go +++ b/src/pkg/net/udp_test.go
@@ -10,7 +10,9 @@ ) func TestWriteToUDP(t *testing.T) { - if runtime.GOOS == "plan9" { + switch runtime.GOOS { + case "plan9": + t.Logf("skipping test on %q", runtime.GOOS) return }