1
0
Fork 0
mirror of https://github.com/moby/moby.git synced 2022-11-09 12:21:53 -05:00

fix consistetly failing TestContainerRestartSuccess on windows it looks up pids and does unixy things

Signed-off-by: Jessica Frazelle <acidburn@docker.com>
This commit is contained in:
Jessica Frazelle 2015-11-25 12:58:41 -08:00
parent a2ab05098d
commit f91115e3a2
No known key found for this signature in database
GPG key ID: 18F3685C0022BFF3

View file

@ -128,7 +128,7 @@ func (s *DockerSuite) TestContainerRestartwithGoodContainer(c *check.C) {
}
func (s *DockerSuite) TestContainerRestartSuccess(c *check.C) {
testRequires(c, DaemonIsLinux)
testRequires(c, DaemonIsLinux, SameHostDaemon)
out, _ := dockerCmd(c, "run", "-d", "--restart=always", "busybox", "top")
id := strings.TrimSpace(out)