Skip to content

Commit

Permalink
Skip checkpoint/restore tests on Fedora for now
Browse files Browse the repository at this point in the history
There is currently still one SELinux related checkpoint/restore problem:
containers#2334

To avoid unnecessary CI failures the checkpoint/restore tests are
temporarily disabled on Fedora.

It is not necessary to disable the tests on Ubuntu as it is running
without SELinux and it is also not necessary to disable the RHEL 7 tests
as RHEL's CRIU is too old to run the checkpoint/restore tests at all.

Signed-off-by: Adrian Reber <areber@redhat.com>
  • Loading branch information
adrianreber committed Feb 27, 2019
1 parent 623fcfa commit adb8c1f
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions test/e2e/checkpoint_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,11 @@ var _ = Describe("Podman checkpoint", func() {
if !criu.CheckForCriu() {
Skip("CRIU is missing or too old.")
}
hostInfo := podmanTest.Host
if hostInfo.Distribution == "fedora" {
Skip("Checkpoint tests appear to fail on F29.")
}

})

AfterEach(func() {
Expand Down

0 comments on commit adb8c1f

Please sign in to comment.