mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Handle IPv6 enabling correctly in the tests
Signed-off-by: Santhosh Manohar <santhosh@docker.com>
This commit is contained in:
parent
a0dcdcb95f
commit
d5e8d8e1cf
2 changed files with 7 additions and 5 deletions
|
@ -381,8 +381,9 @@ func (s *DockerDaemonSuite) TestDaemonIPv6Enabled(c *check.C) {
|
|||
func (s *DockerDaemonSuite) TestDaemonIPv6FixedCIDR(c *check.C) {
|
||||
// IPv6 setup is messing with local bridge address.
|
||||
testRequires(c, SameHostDaemon)
|
||||
setupV6(c)
|
||||
defer teardownV6(c)
|
||||
// Delete the docker0 bridge if its left around from previous daemon. It has to be recreated with
|
||||
// ipv6 enabled
|
||||
deleteInterface(c, "docker0")
|
||||
|
||||
s.d.StartWithBusybox(c, "--ipv6", "--fixed-cidr-v6=2001:db8:2::/64", "--default-gateway-v6=2001:db8:2::100")
|
||||
|
||||
|
@ -408,8 +409,9 @@ func (s *DockerDaemonSuite) TestDaemonIPv6FixedCIDR(c *check.C) {
|
|||
func (s *DockerDaemonSuite) TestDaemonIPv6FixedCIDRAndMac(c *check.C) {
|
||||
// IPv6 setup is messing with local bridge address.
|
||||
testRequires(c, SameHostDaemon)
|
||||
setupV6(c)
|
||||
defer teardownV6(c)
|
||||
// Delete the docker0 bridge if its left around from previous daemon. It has to be recreated with
|
||||
// ipv6 enabled
|
||||
deleteInterface(c, "docker0")
|
||||
|
||||
s.d.StartWithBusybox(c, "--ipv6", "--fixed-cidr-v6=2001:db8:1::/64")
|
||||
|
||||
|
|
|
@ -1412,7 +1412,7 @@ func verifyIPAddresses(c *check.C, cName, nwname, ipv4, ipv6 string) {
|
|||
|
||||
func (s *DockerNetworkSuite) TestDockerNetworkConnectLinkLocalIP(c *check.C) {
|
||||
// create one test network
|
||||
dockerCmd(c, "network", "create", "n0")
|
||||
dockerCmd(c, "network", "create", "--ipv6", "--subnet=2001:db8:1234::/64", "n0")
|
||||
assertNwIsAvailable(c, "n0")
|
||||
|
||||
// run a container with incorrect link-local address
|
||||
|
|
Loading…
Reference in a new issue