From 03dce24137c82caa04c215d983eac06a3edc084c Mon Sep 17 00:00:00 2001 From: Arnaud Porterie Date: Wed, 23 Sep 2015 09:21:03 -0700 Subject: [PATCH 1/2] Skip TestRunUnshareProc Signed-off-by: Arnaud Porterie --- integration-cli/docker_cli_run_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index 1b1d8f445..ebc3b816a 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -2751,6 +2751,8 @@ func (s *DockerSuite) TestMountIntoSys(c *check.C) { } func (s *DockerSuite) TestRunUnshareProc(c *check.C) { + c.Skip("unstable test: is apparmor in a container reliable?") + // Not applicable on Windows as uses Unix specific functionality testRequires(c, Apparmor, NativeExecDriver, DaemonIsLinux) From 04e1015aa06785210dc6a3e4d4ad66700a8d51b0 Mon Sep 17 00:00:00 2001 From: Arnaud Porterie Date: Wed, 23 Sep 2015 09:23:14 -0700 Subject: [PATCH 2/2] Skip TestAppArmorDeniesChmodProc Signed-off-by: Arnaud Porterie --- integration-cli/docker_cli_run_test.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index ebc3b816a..f6485c2de 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -3122,6 +3122,8 @@ func (s *DockerSuite) TestAppArmorTraceSelf(c *check.C) { } func (s *DockerSuite) TestAppArmorDeniesChmodProc(c *check.C) { + c.Skip("Test is failing, and what it tests is unclear") + // Not applicable on Windows as uses Unix specific functionality testRequires(c, SameHostDaemon, NativeExecDriver, Apparmor, DaemonIsLinux) _, exitCode, _ := dockerCmdWithError("run", "busybox", "chmod", "744", "/proc/cpuinfo")