Browse code

Turn off plugin upgrade test when userns on

Until volume plugins can be made aware of the remapped root,
interactions with volumes created by plugin will not work as the file
ownership denies permissions to the userns remapped range.

Docker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>

Phil Estes authored on 2017/08/25 02:52:11
Showing 1 changed files
... ...
@@ -462,7 +462,7 @@ enabled: false`, id, name)
462 462
 }
463 463
 
464 464
 func (s *DockerSuite) TestPluginUpgrade(c *check.C) {
465
-	testRequires(c, DaemonIsLinux, Network, SameHostDaemon, IsAmd64)
465
+	testRequires(c, DaemonIsLinux, Network, SameHostDaemon, IsAmd64, NotUserNamespace)
466 466
 	plugin := "cpuguy83/docker-volume-driver-plugin-local:latest"
467 467
 	pluginV2 := "cpuguy83/docker-volume-driver-plugin-local:v2"
468 468