From a08fb73f9387e22b222d90e638b9f512c3295bdb Mon Sep 17 00:00:00 2001 From: Jessica Frazelle Date: Tue, 26 May 2015 10:31:21 -0700 Subject: [PATCH] fix lxc tests unshare, they dont use our apparmor profile Signed-off-by: Jessica Frazelle --- integration-cli/docker_cli_run_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration-cli/docker_cli_run_test.go b/integration-cli/docker_cli_run_test.go index 1c47e53df..20e8c6ee4 100644 --- a/integration-cli/docker_cli_run_test.go +++ b/integration-cli/docker_cli_run_test.go @@ -3172,7 +3172,7 @@ func (s *DockerSuite) TestTwoContainersInNetHost(c *check.C) { } func (s *DockerSuite) TestRunUnshareProc(c *check.C) { - testRequires(c, Apparmor) + testRequires(c, Apparmor, NativeExecDriver) name := "acidburn" runCmd := exec.Command(dockerBinary, "run", "--name", name, "jess/unshare", "unshare", "-p", "-m", "-f", "-r", "--mount-proc=/proc", "mount")