summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2020-04-03 19:56:03 +0200
committerGitHub <noreply@github.com>2020-04-03 19:56:03 +0200
commit3542700d6e7b630b2eeee8a0e20499bda3dafb03 (patch)
tree7bd9b0f5299557870569d73ade6da3340d154dd9 /test
parent416fd4846facad21f515ce7bfc67d18c16fe358f (diff)
parent001fe983dfd6e6ae3f58e1f9bb1f61c189c98f9c (diff)
downloadpodman-3542700d6e7b630b2eeee8a0e20499bda3dafb03.tar.gz
podman-3542700d6e7b630b2eeee8a0e20499bda3dafb03.tar.bz2
podman-3542700d6e7b630b2eeee8a0e20499bda3dafb03.zip
Merge pull request #5707 from adrianreber/crun-checkpoint-1
Prepare for crun checkpoint support
Diffstat (limited to 'test')
-rw-r--r--test/e2e/checkpoint_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/e2e/checkpoint_test.go b/test/e2e/checkpoint_test.go
index 237223283..e6a3d2f7a 100644
--- a/test/e2e/checkpoint_test.go
+++ b/test/e2e/checkpoint_test.go
@@ -37,7 +37,7 @@ var _ = Describe("Podman checkpoint", func() {
podmanTest.SeedImages()
// Check if the runtime implements checkpointing. Currently only
// runc's checkpoint/restore implementation is supported.
- cmd := exec.Command(podmanTest.OCIRuntime, "checkpoint", "-h")
+ cmd := exec.Command(podmanTest.OCIRuntime, "checkpoint", "--help")
if err := cmd.Start(); err != nil {
Skip("OCI runtime does not support checkpoint/restore")
}