From e133a06d2f4a3e94bfbd60b647046f2f515c9c24 Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Fri, 8 Apr 2022 09:52:55 +0200 Subject: images --size Add a --size option to podman images to allow for disabling computing the size of listed images. If listing images is critical to performance, user may chose to turn off size computation to speed things up. Context: #13755 Signed-off-by: Valentin Rothberg --- test/system/010-images.bats | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/system') diff --git a/test/system/010-images.bats b/test/system/010-images.bats index 257508418..352c3aa95 100644 --- a/test/system/010-images.bats +++ b/test/system/010-images.bats @@ -312,4 +312,15 @@ Deleted: $pauseID" is "$output" "" } +@test "podman images --size" { + run_podman images + is "${lines[0]}" "REPOSITORY.*TAG.*IMAGE ID.*CREATED.*SIZE" + run_podman images --noheading --format "{{.Size}}" + is "$output" ".* MB" + run_podman images --size=false + is "${lines[0]}" "REPOSITORY.*TAG.*IMAGE ID.*CREATED" + run_podman images --noheading --format "{{.Size}}" --size=false + is "$output" "0 B" +} + # vim: filetype=sh -- cgit v1.2.3-54-g00ecf