diff options
-rw-r--r-- | test/e2e/checkpoint_test.go | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/e2e/checkpoint_test.go b/test/e2e/checkpoint_test.go index 57322643e..4e892d11c 100644 --- a/test/e2e/checkpoint_test.go +++ b/test/e2e/checkpoint_test.go @@ -4,7 +4,6 @@ import ( "fmt" "net" "os" - "strconv" "github.com/containers/libpod/pkg/criu" . "github.com/containers/libpod/test/utils" @@ -29,11 +28,6 @@ var _ = Describe("Podman checkpoint", func() { if !criu.CheckForCriu() { Skip("CRIU is missing or too old.") } - hostInfo := podmanTest.Host - hostDistVer, _ := strconv.Atoi(hostInfo.Version) - if hostInfo.Distribution == "fedora" && hostDistVer <= 29 { - Skip("Checkpoint tests appear to fail on older (<30) Fedora versions .") - } }) AfterEach(func() { |