diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-15 07:18:34 -0400 |
---|---|---|
committer | Daniel J Walsh <dwalsh@redhat.com> | 2022-08-15 08:21:15 -0400 |
commit | 2d30b4dee596157d85ce9728921286a6242b5a29 (patch) | |
tree | a0cf8e7a0642b2bdd238a88faa06287f6267375b /test/system/001-basic.bats | |
parent | 4136496ee713982daf3136ffe65d11a4163fabb8 (diff) | |
download | podman-2d30b4dee596157d85ce9728921286a6242b5a29.tar.gz podman-2d30b4dee596157d85ce9728921286a6242b5a29.tar.bz2 podman-2d30b4dee596157d85ce9728921286a6242b5a29.zip |
Add compatibility support for --debug -D flag from docker
This is another fix for https://github.com/containers/podman/issues/14917
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test/system/001-basic.bats')
-rw-r--r-- | test/system/001-basic.bats | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/system/001-basic.bats b/test/system/001-basic.bats index cf37fc07c..584511388 100644 --- a/test/system/001-basic.bats +++ b/test/system/001-basic.bats @@ -190,6 +190,9 @@ See 'podman version --help'" "podman version --remote" run_podman --log-level=error info run_podman --log-level=fatal info run_podman --log-level=panic info + run_podman --debug info + run_podman 1 --debug --log-level=panic info + is "$output" "Setting --log-level and --debug is not allowed" } # vim: filetype=sh |