diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2020-12-15 09:12:57 -0500 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2020-12-15 17:22:06 -0500 |
commit | e42d920ebfa381322eb03cb27941ecb93eea3dd7 (patch) | |
tree | 4f825a579262861307a1a661fe824696105ab008 /test/system/030-run.bats | |
parent | e689503fd6995fa45d990fef6ad7de425c1cbcba (diff) | |
download | podman-e42d920ebfa381322eb03cb27941ecb93eea3dd7.tar.gz podman-e42d920ebfa381322eb03cb27941ecb93eea3dd7.tar.bz2 podman-e42d920ebfa381322eb03cb27941ecb93eea3dd7.zip |
Add LogSize to container inspect
Other log options are available so we need to add ability to look
up LogSize.
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r-- | test/system/030-run.bats | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 23f924de2..f0a6ea049 100644 --- a/test/system/030-run.bats +++ b/test/system/030-run.bats @@ -401,7 +401,7 @@ json-file | f is "$output" "$driver" "podman inspect: driver" # If LogPath is non-null, check that it exists and has a valid log - run_podman inspect --format '{{.LogPath}}' myctr + run_podman inspect --format '{{.HostConfig.LogConfig.Path}}' myctr if [[ $do_check != '-' ]]; then is "$output" "/.*" "LogPath (driver=$driver)" if ! test -e "$output"; then |