Skip to content

Commit

Permalink
Merge pull request #2461 from adrianreber/disable
Browse files Browse the repository at this point in the history
Skip checkpoint/restore tests on Fedora for now
  • Loading branch information
openshift-merge-robot authored Feb 28, 2019
2 parents e30628e + 6412b05 commit 03b236a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test/e2e/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,13 @@ var _ = Describe("Podman checkpoint", func() {
if !criu.CheckForCriu() {
Skip("CRIU is missing or too old.")
}
// TODO: Remove the skip when the current CRIU SELinux problem is solved.
// See: https://github.com/containers/libpod/issues/2334
hostInfo := podmanTest.Host
if hostInfo.Distribution == "fedora" {
Skip("Checkpointing containers on Fedora currently broken.")
}

})

AfterEach(func() {
Expand Down

0 comments on commit 03b236a

Please sign in to comment.