From a04fcc11ee7c0abb3bf385cef78647dc9cc723ee Mon Sep 17 00:00:00 2001 From: Andrew Hsu Date: Mon, 30 Oct 2017 14:48:29 -0700 Subject: [PATCH] skip test DockerSuite.TestCpFromErrDstParentNotExists This integration-cli test is only testing CLI behaviour so should not be in the engine side of tests. Signed-off-by: Andrew Hsu --- .../engine/integration-cli/docker_cli_cp_from_container_test.go | 1 + 1 file changed, 1 insertion(+) diff --git a/components/engine/integration-cli/docker_cli_cp_from_container_test.go b/components/engine/integration-cli/docker_cli_cp_from_container_test.go index 687aec8b5f..5c1bc63fa9 100644 --- a/components/engine/integration-cli/docker_cli_cp_from_container_test.go +++ b/components/engine/integration-cli/docker_cli_cp_from_container_test.go @@ -53,6 +53,7 @@ func (s *DockerSuite) TestCpFromErrSrcNotDir(c *check.C) { // Test for error when SRC is a valid file or directory, // bu the DST parent directory does not exist. func (s *DockerSuite) TestCpFromErrDstParentNotExists(c *check.C) { + c.Skip("Blacklisting for Docker CE") testRequires(c, DaemonIsLinux) containerID := makeTestContainer(c, testContainerOptions{addContent: true})