Merge pull request #17373 from Microsoft/10662-volumetests

Windows: Volume integration tests
Upstream-commit: 2266462f724492d3802d7043723347adeb18024e
Component: engine
This commit is contained in:
Brian Goff
2015-10-27 19:52:11 -04:00
8 changed files with 381 additions and 162 deletions

View File

@ -362,7 +362,7 @@ func (s *DockerSuite) TestLinksPingLinkedContainersOnRename(c *check.C) {
}
func (s *DockerSuite) TestRunExecDir(c *check.C) {
testRequires(c, SameHostDaemon)
testRequires(c, SameHostDaemon, DaemonIsLinux)
out, _ := dockerCmd(c, "run", "-d", "busybox", "top")
id := strings.TrimSpace(out)
@ -409,8 +409,7 @@ func (s *DockerSuite) TestRunExecDir(c *check.C) {
}
func (s *DockerSuite) TestRunMutableNetworkFiles(c *check.C) {
testRequires(c, SameHostDaemon)
testRequires(c, SameHostDaemon, DaemonIsLinux)
for _, fn := range []string{"resolv.conf", "hosts"} {
deleteAllContainers()