diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-22 05:18:34 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-22 05:18:34 -0400 |
commit | 2627345dd5b8550242033212e6481af970537510 (patch) | |
tree | 52195722ecdc4053ec3595b75c662374b385684a /test | |
parent | b46970763c3b1c75144c8d4acf8773f804035c8d (diff) | |
parent | 93ecafcbaec20c7f2c21896932d93b7a5df13f65 (diff) | |
download | podman-2627345dd5b8550242033212e6481af970537510.tar.gz podman-2627345dd5b8550242033212e6481af970537510.tar.bz2 podman-2627345dd5b8550242033212e6481af970537510.zip |
Merge pull request #13958 from cevich/fix_system_criu_relink
Workaround criu re-linking output in system test
Diffstat (limited to 'test')
-rw-r--r-- | test/system/520-checkpoint.bats | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/system/520-checkpoint.bats b/test/system/520-checkpoint.bats index 046dfd126..b41d460a4 100644 --- a/test/system/520-checkpoint.bats +++ b/test/system/520-checkpoint.bats @@ -47,7 +47,8 @@ function teardown() { # Checkpoint, and confirm via inspect run_podman container checkpoint $cid - is "$output" "$cid" "podman container checkpoint" + # FIXME: remove the `.*` prefix after fix packaged for https://github.com/checkpoint-restore/criu/pull/1706 + is "$output" ".*$cid" "podman container checkpoint" run_podman container inspect \ --format '{{.State.Status}}:{{.State.Running}}:{{.State.Paused}}:{{.State.Checkpointed}}' $cid |