aboutsummaryrefslogtreecommitdiff
path: root/test/system
diff options
context:
space:
mode:
authorRomain Geissler <romain.geissler@amadeus.com>2022-02-19 13:57:20 +0000
committerRomain Geissler <romain.geissler@amadeus.com>2022-02-26 10:27:34 +0000
commitca980c2e024bd33f4be3a33bb1dbb22c86bfe072 (patch)
tree0df5b67905dbb2cfc440fb8ae880b70687cba24c /test/system
parent49d511b6ee88ceff70cc6786c467bed39da35a61 (diff)
downloadpodman-ca980c2e024bd33f4be3a33bb1dbb22c86bfe072.tar.gz
podman-ca980c2e024bd33f4be3a33bb1dbb22c86bfe072.tar.bz2
podman-ca980c2e024bd33f4be3a33bb1dbb22c86bfe072.zip
Option --url and --connection should imply --remote.
Closes #13242 Signed-off-by: Romain Geissler <romain.geissler@amadeus.com>
Diffstat (limited to 'test/system')
-rw-r--r--test/system/001-basic.bats11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/system/001-basic.bats b/test/system/001-basic.bats
index 748377e4b..582efa058 100644
--- a/test/system/001-basic.bats
+++ b/test/system/001-basic.bats
@@ -126,6 +126,17 @@ See 'podman version --help'" "podman version --remote"
if grep -- " --remote " <<<"$output"; then
die "podman --help, with CONTAINER_CONNECTION set, is showing --remote"
fi
+
+ # When it detects --url or --connection, --remote is not an option
+ run_podman --url foobar --help
+ if grep -- " --remote " <<<"$output"; then
+ die "podman --help, with --url set, is showing --remote"
+ fi
+
+ run_podman --connection foobar --help
+ if grep -- " --remote " <<<"$output"; then
+ die "podman --help, with --connection set, is showing --remote"
+ fi
}
# Check that just calling "podman-remote" prints the usage message even