mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #24949 from Microsoft/jjh/tasklist-tlist
Windows: nanoserver TestBuildCmdShellArgsEscaped
This commit is contained in:
commit
8f11896a45
1 changed files with 2 additions and 3 deletions
|
@ -6947,10 +6947,9 @@ func (s *DockerSuite) TestBuildShellWindowsPowershell(c *check.C) {
|
||||||
func (s *DockerSuite) TestBuildCmdShellArgsEscaped(c *check.C) {
|
func (s *DockerSuite) TestBuildCmdShellArgsEscaped(c *check.C) {
|
||||||
testRequires(c, DaemonIsWindows)
|
testRequires(c, DaemonIsWindows)
|
||||||
name := "testbuildcmdshellescaped"
|
name := "testbuildcmdshellescaped"
|
||||||
|
|
||||||
_, err := buildImage(name, `
|
_, err := buildImage(name, `
|
||||||
FROM `+minimalBaseImage()+`
|
FROM `+minimalBaseImage()+`
|
||||||
CMD "tasklist"
|
CMD "ipconfig"
|
||||||
`, true)
|
`, true)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.Fatal(err)
|
c.Fatal(err)
|
||||||
|
@ -6963,7 +6962,7 @@ func (s *DockerSuite) TestBuildCmdShellArgsEscaped(c *check.C) {
|
||||||
dockerCmd(c, "wait", "inspectme")
|
dockerCmd(c, "wait", "inspectme")
|
||||||
res = inspectFieldJSON(c, name, "Config.Cmd")
|
res = inspectFieldJSON(c, name, "Config.Cmd")
|
||||||
|
|
||||||
if res != `["cmd","/S","/C","\"tasklist\""]` {
|
if res != `["cmd","/S","/C","\"ipconfig\""]` {
|
||||||
c.Fatalf("CMD was not escaped Config.Cmd: got %v", res)
|
c.Fatalf("CMD was not escaped Config.Cmd: got %v", res)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue