summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuss Cox <rsc@golang.org>2010-04-27 19:04:22 -0700
committerRuss Cox <rsc@golang.org>2010-04-27 19:04:22 -0700
commitfc844fdfd85e79581ae4c2da73159eb3ecac090f (patch)
tree94e3afc8b10830296bdf44355219e333605b1111
parentf7a49ba40b73517c99aea91c59320082508e9199 (diff)
downloadgolang-fc844fdfd85e79581ae4c2da73159eb3ecac090f.tar.gz
net: drop non-RHEL-4.6 ports from test
Fixes issue 610. R=adg CC=golang-dev http://codereview.appspot.com/1006044
-rw-r--r--src/pkg/net/port_test.go2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/pkg/net/port_test.go b/src/pkg/net/port_test.go
index 4eb53dc93..50aab5aba 100644
--- a/src/pkg/net/port_test.go
+++ b/src/pkg/net/port_test.go
@@ -33,7 +33,6 @@ var porttests = []portTest{
portTest{"tcp", "http", 80, true},
portTest{"udp", "echo", 7, true},
- portTest{"udp", "tacacs", 49, true},
portTest{"udp", "tftp", 69, true},
portTest{"udp", "bootpc", 68, true},
portTest{"udp", "bootps", 67, true},
@@ -41,7 +40,6 @@ var porttests = []portTest{
portTest{"udp", "ntp", 123, true},
portTest{"udp", "snmp", 161, true},
portTest{"udp", "syslog", 514, true},
- portTest{"udp", "nfs", 2049, true},
portTest{"--badnet--", "zzz", 0, false},
portTest{"tcp", "--badport--", 0, false},