Merge pull request #1890 from baude/disablecheckpointtests

disable checkpoint tests on f29
This commit is contained in:
OpenShift Merge Robot
2018-11-28 13:31:40 -08:00
committed by GitHub

View File

@ -28,6 +28,10 @@ var _ = Describe("Podman checkpoint", func() {
if !criu.CheckForCriu() {
Skip("CRIU is missing or too old.")
}
hostInfo := podmanTest.Host
if hostInfo.Distribution == "fedora" && hostInfo.Version == "29" {
Skip("Checkpoint tests appear to fail on F29.")
}
})
AfterEach(func() {