From d75aaa2ca07eb9d0ea464ac503080177091b3b1c Mon Sep 17 00:00:00 2001 From: John Howard Date: Fri, 3 Jun 2016 13:23:35 -0700 Subject: [PATCH] Windows: Turn off TestBuildDockerignoreComment Signed-off-by: John Howard --- integration-cli/docker_cli_build_test.go | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/integration-cli/docker_cli_build_test.go b/integration-cli/docker_cli_build_test.go index 8b74b4d6cb..b1c845d6bf 100644 --- a/integration-cli/docker_cli_build_test.go +++ b/integration-cli/docker_cli_build_test.go @@ -6758,6 +6758,11 @@ func (s *DockerSuite) TestBuildDeleteCommittedFile(c *check.C) { // #20083 func (s *DockerSuite) TestBuildDockerignoreComment(c *check.C) { + // TODO Windows: Figure out why this test is flakey on TP5. If you add + // something like RUN sleep 5, or even RUN ls /tmp after the ADD line, + // it is more reliable, but that's not a good fix. + testRequires(c, DaemonIsLinux) + name := "testbuilddockerignorecleanpaths" dockerfile := ` FROM busybox