diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-02-28 13:51:13 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-28 13:51:13 -0800 |
commit | 03b236a754828c91ca3fc4845531eefb043b01b2 (patch) | |
tree | 16d287d24b728874305d8cf0dc888fe3fbe83b19 /test | |
parent | e30628eeda9898a64c0a5ed541536d8d5a3cf13c (diff) | |
parent | 6412b05211b222000a97f14c1595fe75958fb4fb (diff) | |
download | podman-03b236a754828c91ca3fc4845531eefb043b01b2.tar.gz podman-03b236a754828c91ca3fc4845531eefb043b01b2.tar.bz2 podman-03b236a754828c91ca3fc4845531eefb043b01b2.zip |
Merge pull request #2461 from adrianreber/disable
Skip checkpoint/restore tests on Fedora for now
Diffstat (limited to 'test')
-rw-r--r-- | test/e2e/checkpoint_test.go | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/e2e/checkpoint_test.go b/test/e2e/checkpoint_test.go index fda6eb085..11332708b 100644 --- a/test/e2e/checkpoint_test.go +++ b/test/e2e/checkpoint_test.go @@ -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() { |