Skip to content

Commit

Permalink
Disabled Flaky tests on powerpc and z
Browse files Browse the repository at this point in the history
Signed-off-by: Olli Janatuinen <olli.janatuinen@gmail.com>
  • Loading branch information
olljanat committed Dec 23, 2018
1 parent 7e7ff2a commit 9678faf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions integration-cli/docker_api_swarm_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import (
"net"
"net/http"
"path/filepath"
"runtime"
"strings"
"sync"
"time"
Expand Down Expand Up @@ -357,6 +358,13 @@ func (s *DockerSwarmSuite) TestAPISwarmLeaderElection(c *check.C) {
}

func (s *DockerSwarmSuite) TestAPISwarmRaftQuorum(c *check.C) {
if runtime.GOARCH == "s390x" {
c.Skip("Flaky test disabled on s390x")
}
if runtime.GOARCH == "ppc64le" {
c.Skip("Flaky test disabled on ppc64le")
}

d1 := s.AddDaemon(c, true, true)
d2 := s.AddDaemon(c, true, true)
d3 := s.AddDaemon(c, true, true)
Expand Down

0 comments on commit 9678faf

Please sign in to comment.