Merge pull request #24936 from Microsoft/jjh/TestRunCleanupCmdOnEntrypoint

Windows: TestRunCleanupCmdOnEntrypoint for nanoserver
Upstream-commit: d602391f8a6d7679f074191d36bc8af7c5b34267
Component: engine
This commit is contained in:
Alexander Morozov
2016-07-22 10:25:54 -07:00
committed by GitHub

View File

@ -1770,7 +1770,11 @@ func (s *DockerSuite) TestRunCleanupCmdOnEntrypoint(c *check.C) {
out = strings.TrimSpace(out)
expected := "root"
if daemonPlatform == "windows" {
expected = `user manager\containeradministrator`
if WindowsBaseImage == "windowsservercore" {
expected = `user manager\containeradministrator`
} else {
expected = `ContainerAdministrator` // nanoserver
}
}
if out != expected {
c.Fatalf("Expected output %s, got %q", expected, out)