diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-10-20 08:39:11 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-20 08:39:11 +0000 |
commit | fba7a05b1b24917b92faedfd097c7ab88c48bc5e (patch) | |
tree | cb0a554c30eddfd84af4645b6ed639e1fccf1946 /test | |
parent | 7fa99358bd7e165f5b14b12b778614812ae42c8b (diff) | |
parent | 20b5a8599b11269c8812ce6c3df6d7f39ef1930c (diff) | |
download | podman-fba7a05b1b24917b92faedfd097c7ab88c48bc5e.tar.gz podman-fba7a05b1b24917b92faedfd097c7ab88c48bc5e.tar.bz2 podman-fba7a05b1b24917b92faedfd097c7ab88c48bc5e.zip |
Merge pull request #12024 from rhatdan/podman
podman run --memory=0 ... should not set memory limit
Diffstat (limited to 'test')
-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 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" |