diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-20 19:14:08 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 19:14:08 +0000 |
commit | 4268a4afee4c1d030c1f901398e6a9b3f282eae3 (patch) | |
tree | 9b94171cc3807e028d218a793b73aded58a7badb /test/system/015-help.bats | |
parent | eba281c3e0e69533427d3eb5c66c60b5ca038c1b (diff) | |
parent | 70a5d8cd1d8e44d755be316730046b73a4a6e2eb (diff) | |
download | podman-4268a4afee4c1d030c1f901398e6a9b3f282eae3.tar.gz podman-4268a4afee4c1d030c1f901398e6a9b3f282eae3.tar.bz2 podman-4268a4afee4c1d030c1f901398e6a9b3f282eae3.zip |
Merge pull request #12049 from edsantiago/test_dash_a_with_l
System tests: confirm that -a and -l clash
Diffstat (limited to 'test/system/015-help.bats')
-rw-r--r-- | test/system/015-help.bats | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/system/015-help.bats b/test/system/015-help.bats index 5f38c34a1..b0795b524 100644 --- a/test/system/015-help.bats +++ b/test/system/015-help.bats @@ -86,6 +86,12 @@ function check_help() { run_podman 125 "$@" $cmd -l nonexistent-container is "$output" "Error: .*--latest and \(containers\|pods\|arguments\) cannot be used together" \ "'$command_string' with both -l and container" + + # Combine -l and -a, too (but spell it as --all, because "-a" + # means "attach" in podman container start) + run_podman 125 "$@" $cmd --all --latest + is "$output" "Error: \(--all and --latest cannot be used together\|--all, --latest and containers cannot be used together\|--all, --latest and arguments cannot be used together\|unknown flag\)" \ + "'$command_string' with both --all and --latest" fi fi |