Browse code

skip plugin test on non x86 architectures

Because the plugins in dockerhub aren't multi-arch, they will
fail on non x86-64 platforms. Comment this test out like we do with
the others.

Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>

Christopher Jones authored on 2017/03/07 23:17:28
Showing 1 changed files
... ...
@@ -54,6 +54,7 @@ func (s *DockerSwarmSuite) TestSwarmVolumePlugin(c *check.C) {
54 54
 
55 55
 // Test network plugin filter in swarm
56 56
 func (s *DockerSwarmSuite) TestSwarmNetworkPluginV2(c *check.C) {
57
+	testRequires(c, IsAmd64)
57 58
 	d1 := s.AddDaemon(c, true, true)
58 59
 	d2 := s.AddDaemon(c, true, false)
59 60