mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Windows: Fix TestRunWorkingDirectory
Signed-off-by: John Howard <jhoward@microsoft.com>
This commit is contained in:
parent
29dbcbad87
commit
257494bd0a
1 changed files with 1 additions and 4 deletions
|
@ -123,13 +123,10 @@ func (s *DockerSuite) TestRunDetachedContainerIDPrinting(c *check.C) {
|
|||
|
||||
// the working directory should be set correctly
|
||||
func (s *DockerSuite) TestRunWorkingDirectory(c *check.C) {
|
||||
// TODO Windows: There's a Windows bug stopping this from working.
|
||||
testRequires(c, DaemonIsLinux)
|
||||
dir := "/root"
|
||||
image := "busybox"
|
||||
if daemonPlatform == "windows" {
|
||||
dir = `/windows`
|
||||
image = WindowsBaseImage
|
||||
dir = `C:/Windows`
|
||||
}
|
||||
|
||||
// First with -w
|
||||
|
|
Loading…
Add table
Reference in a new issue