diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-10-23 15:43:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-23 15:43:49 +0200 |
commit | ef556cfecf4d41f63c03eedf127683dad7797e71 (patch) | |
tree | 9d2eb86f75ff52c4d220eaa2117ced3f77889156 /test/system/015-help.bats | |
parent | 46ad6bc1faac82555a9e6cfea93536e2a504e2e8 (diff) | |
parent | 77a2bbb1c0df2536638e5a9030cda05d6524513e (diff) | |
download | podman-ef556cfecf4d41f63c03eedf127683dad7797e71.tar.gz podman-ef556cfecf4d41f63c03eedf127683dad7797e71.tar.bz2 podman-ef556cfecf4d41f63c03eedf127683dad7797e71.zip |
Merge pull request #4275 from vrothberg/fix-4274
stats: list all running containers unless specified otherwise
Diffstat (limited to 'test/system/015-help.bats')
-rw-r--r-- | test/system/015-help.bats | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/test/system/015-help.bats b/test/system/015-help.bats index a987f04bc..fd4be87b2 100644 --- a/test/system/015-help.bats +++ b/test/system/015-help.bats @@ -55,9 +55,11 @@ function check_help() { # If usage has required arguments, try running without them if expr "$usage" : '.*\[flags\] [A-Z]' >/dev/null; then - dprint "podman $@ $cmd (without required args)" - run_podman 125 "$@" $cmd - is "$output" "Error:" + if [ "$cmd" != "stats"]; then + dprint "podman $@ $cmd (without required args)" + run_podman 125 "$@" $cmd + is "$output" "Error:" + fi fi count=$(expr $count + 1) |