summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDaniel J Walsh <dwalsh@redhat.com>2021-10-18 15:04:19 -0400
committerDaniel J Walsh <dwalsh@redhat.com>2021-10-19 14:06:33 -0400
commit20b5a8599b11269c8812ce6c3df6d7f39ef1930c (patch)
tree40e3e76ac20480d169ca5df9593cfe7e05b24bda /test
parent82fd2999b2cd1137bc8fe856b2b9af710e3410f4 (diff)
downloadpodman-20b5a8599b11269c8812ce6c3df6d7f39ef1930c.tar.gz
podman-20b5a8599b11269c8812ce6c3df6d7f39ef1930c.tar.bz2
podman-20b5a8599b11269c8812ce6c3df6d7f39ef1930c.zip
podman run --memory=0 ... should not set memory limit
On Docker this is ignored, and it should be on Podman as well. This is documented in the man page. Fixes: https://github.com/containers/podman/issues/12002 Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Diffstat (limited to 'test')
-rw-r--r--test/system/030-run.bats5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats
index 44c2ee509..2c8d08b99 100644
--- a/test/system/030-run.bats
+++ b/test/system/030-run.bats
@@ -67,6 +67,11 @@ echo $rand | 0 | $rand
is "$output" ".*invalidflag" "failed when passing undefined flags to the runtime"
}
+@test "podman run --memory=0 runtime option" {
+ run_podman run --memory=0 --rm $IMAGE echo hello
+ is "$output" "hello" "failed to run when --memory is set to 0"
+}
+
# 'run --preserve-fds' passes a number of additional file descriptors into the container
@test "podman run --preserve-fds" {
skip_if_remote "preserve-fds is meaningless over remote"