]> Cypherpunks repositories - gostls13.git/commitdiff
net: drop non-RHEL-4.6 ports from test
authorRuss Cox <rsc@golang.org>
Wed, 28 Apr 2010 02:04:22 +0000 (19:04 -0700)
committerRuss Cox <rsc@golang.org>
Wed, 28 Apr 2010 02:04:22 +0000 (19:04 -0700)
Fixes #610.

R=adg
CC=golang-dev
https://golang.org/cl/1006044

src/pkg/net/port_test.go

index 4eb53dc93b3996c12ef5d110ecbe914ce51b8e6d..50aab5aba70b510ecc39951837c385e0849f9386 100644 (file)
@@ -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},