Merge pull request #2461 from adrianreber/disable

Skip checkpoint/restore tests on Fedora for now
This commit is contained in:
OpenShift Merge Robot
2019-02-28 13:51:13 -08:00
committed by GitHub

View File

@ -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() {