diff options
| author | Clément Chigot <clement.chigot@atos.net> | 2018-10-23 15:55:57 +0200 |
|---|---|---|
| committer | Ian Lance Taylor <iant@golang.org> | 2018-10-23 14:48:21 +0000 |
| commit | e850b3752f49db4c93ebf549400b2d79f6801c9a (patch) | |
| tree | 872189c3a26f3a9e35a708ad552906b9e0a60bd9 /src | |
| parent | 0d6569346ef3709052bad4a714634389f083dc3e (diff) | |
| download | go-e850b3752f49db4c93ebf549400b2d79f6801c9a.tar.xz | |
net: fix TestInterfaceMulticastAddrs for AIX
This commit disables checkMulticastStats for AIX operating system.
Change-Id: If8d0fb609a0dcf75b7bb5c3871cfb6fad76a0a92
Reviewed-on: https://go-review.googlesource.com/c/144102
Run-TryBot: Ian Lance Taylor <iant@golang.org>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
Diffstat (limited to 'src')
| -rw-r--r-- | src/net/interface_test.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/interface_test.go b/src/net/interface_test.go index 5d183c5638..c6b514abce 100644 --- a/src/net/interface_test.go +++ b/src/net/interface_test.go @@ -278,7 +278,7 @@ func checkUnicastStats(ifStats *ifStats, uniStats *routeStats) error { func checkMulticastStats(ifStats *ifStats, uniStats, multiStats *routeStats) error { switch runtime.GOOS { - case "dragonfly", "nacl", "netbsd", "openbsd", "plan9", "solaris": + case "aix", "dragonfly", "nacl", "netbsd", "openbsd", "plan9", "solaris": default: // Test the existence of connected multicast route // clones for IPv4. Unlike IPv6, IPv4 multicast |
