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
commit 03b236a754
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

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