diff options
author | Ed Santiago <santiago@redhat.com> | 2022-01-06 19:39:05 -0700 |
---|---|---|
committer | Ed Santiago <santiago@redhat.com> | 2022-01-10 12:14:53 -0700 |
commit | 508f9b76ea4475c3b9b0d3366e02b8b0b995d699 (patch) | |
tree | 62373e7b963c9ef90e5c5e06924d636ab931457c /test/system/010-images.bats | |
parent | 87cd4b698cea28ef99b3b3326309b068b9aa7f04 (diff) | |
download | podman-508f9b76ea4475c3b9b0d3366e02b8b0b995d699.tar.gz podman-508f9b76ea4475c3b9b0d3366e02b8b0b995d699.tar.bz2 podman-508f9b76ea4475c3b9b0d3366e02b8b0b995d699.zip |
System tests: fix RHEL8 gating tests
Add a fix for RHEL8 gating tests. This resolves yet another
journald/file events/logger mismatch bug.
Also, while I'm at it, more log cleanup: a recently-added test was
missing final rm/rmi, resulting in big red scary output in test logs.
Signed-off-by: Ed Santiago <santiago@redhat.com>
Diffstat (limited to 'test/system/010-images.bats')
-rw-r--r-- | test/system/010-images.bats | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/system/010-images.bats b/test/system/010-images.bats index 201418620..ebd71450f 100644 --- a/test/system/010-images.bats +++ b/test/system/010-images.bats @@ -272,6 +272,10 @@ Deleted: $pauseID" "infra images gets removed as well" is "$output" "" run_podman create --pod new:$pname $IMAGE + # Clean up + run_podman rm "${lines[-1]}" + run_podman pod rm -a + run_podman rmi $pauseImage } @test "podman images - rmi -f can remove infra images" { |