summaryrefslogtreecommitdiff
path: root/test/system/030-run.bats
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2022-01-12 20:12:19 +0100
committerGitHub <noreply@github.com>2022-01-12 20:12:19 +0100
commit3f0661639c3ef3b18e4437f00075352df0af6cee (patch)
treefd2e33452247373b176f70ff2ab6c5f503527d92 /test/system/030-run.bats
parentf69fcb24832780a9cc4fd17818967374fcb0710f (diff)
parentfde6ad637355ee27929da084e2920ef2b730875c (diff)
downloadpodman-3f0661639c3ef3b18e4437f00075352df0af6cee.tar.gz
podman-3f0661639c3ef3b18e4437f00075352df0af6cee.tar.bz2
podman-3f0661639c3ef3b18e4437f00075352df0af6cee.zip
Merge pull request #12151 from rhatdan/noout
Add --noout option to prevent the output of ids
Diffstat (limited to 'test/system/030-run.bats')
-rw-r--r--test/system/030-run.bats15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats
index feca5370b..afcda3d3c 100644
--- a/test/system/030-run.bats
+++ b/test/system/030-run.bats
@@ -509,6 +509,21 @@ json-file | f
rm -f $new_runtime
}
+@test "podman --noout run should print output" {
+ run_podman --noout run -d --name test $IMAGE echo hi
+ is "$output" "" "output should be empty"
+ run_podman wait test
+ run_podman --noout rm test
+ is "$output" "" "output should be empty"
+}
+
+@test "podman --noout create should print output" {
+ run_podman --noout create --name test $IMAGE echo hi
+ is "$output" "" "output should be empty"
+ run_podman --noout rm test
+ is "$output" "" "output should be empty"
+}
+
# Regression test for issue #8082
@test "podman run : look up correct image name" {
# Create a 2nd tag for the local image. Force to lower case, and apply it.