summaryrefslogtreecommitdiff
path: root/test/system/200-pod.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-03-17 18:28:24 +0100
committerGitHub <noreply@github.com>2022-03-17 18:28:24 +0100
commite59f71d230cf5435dc569add90e22cc644e38647 (patch)
tree44004f81258d123c70411cb05fe503ae72c056ed /test/system/200-pod.bats
parentecd2746ce36db6ebe5d99b26045f197cb136cd61 (diff)
parentff54aaa634f9b3fbcdc67ceff8ebcc9689ca0658 (diff)
downloadpodman-e59f71d230cf5435dc569add90e22cc644e38647.tar.gz
podman-e59f71d230cf5435dc569add90e22cc644e38647.tar.bz2
podman-e59f71d230cf5435dc569add90e22cc644e38647.zip
Merge pull request #13530 from vrothberg/fix-13529
podman create: building local pause image: do not read ignore files
Diffstat (limited to 'test/system/200-pod.bats')
-rw-r--r--test/system/200-pod.bats8
1 files changed, 1 insertions, 7 deletions
diff --git a/test/system/200-pod.bats b/test/system/200-pod.bats
index 34dfaa8f6..ca931e244 100644
--- a/test/system/200-pod.bats
+++ b/test/system/200-pod.bats
@@ -6,13 +6,7 @@ load helpers
function teardown() {
run_podman pod rm -f -t 0 -a
run_podman rm -f -t 0 -a
- run_podman image list --format '{{.ID}} {{.Repository}}'
- while read id name; do
- if [[ "$name" =~ /podman-pause ]]; then
- run_podman rmi $id
- fi
- done <<<"$output"
-
+ run_podman ? rmi $(pause_image)
basic_teardown
}