diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2021-10-18 15:04:19 -0400 |
---|---|---|
committer | Matthew Heon <matthew.heon@pm.me> | 2021-11-12 11:08:25 -0500 |
commit | 8887cc7e449602d5ff371de84e24b83e448d8480 (patch) | |
tree | 8a453129aeb18551551c4244c7b3cf41442ffd72 /test/system | |
parent | 6f779b23002710a74d6f2360ad0dc0029b5eefac (diff) | |
download | podman-8887cc7e449602d5ff371de84e24b83e448d8480.tar.gz podman-8887cc7e449602d5ff371de84e24b83e448d8480.tar.bz2 podman-8887cc7e449602d5ff371de84e24b83e448d8480.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/system')
-rw-r--r-- | test/system/030-run.bats | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/system/030-run.bats b/test/system/030-run.bats index 8640d427a..2900540de 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" |