1
0
mirror of https://github.com/golang/go synced 2024-11-22 01:04:40 -07:00

net: drop non-RHEL-4.6 ports from test

Fixes #610.

R=adg
CC=golang-dev
https://golang.org/cl/1006044
This commit is contained in:
Russ Cox 2010-04-27 19:04:22 -07:00
parent 01fc062496
commit dc606a20ce

View 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},