TestSwarmContainerEndpointOptions: fix debug
In case of failure, stale out was printed. Fixes: 6212ea669b4e92b3 Signed-off-by: Kir Kolyshkin <kolyshkin@gmail.com> (cherry picked from commit 1921753b4b30dcca4fe772e7c1b0bc3f7bb7cd62) Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: b60ecd32a1d3ba7debf02d15fe346ea5ca607bbd Component: engine
This commit is contained in:
committed by
Sebastiaan van Stijn
parent
aa5b904041
commit
b175e2d89e
@ -345,21 +345,21 @@ func (s *DockerSwarmSuite) TestSwarmContainerEndpointOptions(c *check.C) {
|
||||
c.Assert(err, checker.IsNil, check.Commentf("%s", out))
|
||||
c.Assert(strings.TrimSpace(out), checker.Not(checker.Equals), "")
|
||||
|
||||
_, err = d.Cmd("run", "-d", "--net=foo", "--name=first", "--net-alias=first-alias", "busybox:glibc", "top")
|
||||
out, err = d.Cmd("run", "-d", "--net=foo", "--name=first", "--net-alias=first-alias", "busybox:glibc", "top")
|
||||
c.Assert(err, checker.IsNil, check.Commentf("%s", out))
|
||||
|
||||
_, err = d.Cmd("run", "-d", "--net=foo", "--name=second", "busybox:glibc", "top")
|
||||
out, err = d.Cmd("run", "-d", "--net=foo", "--name=second", "busybox:glibc", "top")
|
||||
c.Assert(err, checker.IsNil, check.Commentf("%s", out))
|
||||
|
||||
_, err = d.Cmd("run", "-d", "--net=foo", "--net-alias=third-alias", "busybox:glibc", "top")
|
||||
out, err = d.Cmd("run", "-d", "--net=foo", "--net-alias=third-alias", "busybox:glibc", "top")
|
||||
c.Assert(err, checker.IsNil, check.Commentf("%s", out))
|
||||
|
||||
// ping first container and its alias, also ping third and anonymous container by its alias
|
||||
_, err = d.Cmd("exec", "second", "ping", "-c", "1", "first")
|
||||
out, err = d.Cmd("exec", "second", "ping", "-c", "1", "first")
|
||||
c.Assert(err, check.IsNil, check.Commentf("%s", out))
|
||||
_, err = d.Cmd("exec", "second", "ping", "-c", "1", "first-alias")
|
||||
out, err = d.Cmd("exec", "second", "ping", "-c", "1", "first-alias")
|
||||
c.Assert(err, check.IsNil, check.Commentf("%s", out))
|
||||
_, err = d.Cmd("exec", "second", "ping", "-c", "1", "third-alias")
|
||||
out, err = d.Cmd("exec", "second", "ping", "-c", "1", "third-alias")
|
||||
c.Assert(err, check.IsNil, check.Commentf("%s", out))
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user