1
0
mirror of https://github.com/golang/go synced 2024-11-12 09:20:22 -07:00

net: disable TestInterfaceAddrsWithNetsh on windows

Updates #13981.

Change-Id: Id8f3cd56a81a7a993cea5c757e619407da491fed
Reviewed-on: https://go-review.googlesource.com/18710
Reviewed-by: Ian Lance Taylor <iant@golang.org>
This commit is contained in:
Mikio Hara 2016-01-17 09:04:58 +09:00
parent 9270973a5b
commit 5c94f1ae8f

View File

@ -380,6 +380,8 @@ func netshInterfaceIPv6ShowAddress(name string) ([]string, error) {
}
func TestInterfaceAddrsWithNetsh(t *testing.T) {
t.Skip("see https://golang.org/issue/13981")
if isWindowsXP(t) {
t.Skip("Windows XP netsh command does not provide required functionality")
}