diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-11-20 12:50:55 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-11-20 20:12:43 +0000 |
commit | 5d52f74d2136786c2874898ad373808e25609545 (patch) | |
tree | 9e746f03bf559e07d73af7b2c184a48fcd1e037e /test | |
parent | 6e0944f2f128534caaf884251d1e42fa4f1ba235 (diff) | |
download | podman-5d52f74d2136786c2874898ad373808e25609545.tar.gz podman-5d52f74d2136786c2874898ad373808e25609545.tar.bz2 podman-5d52f74d2136786c2874898ad373808e25609545.zip |
Add support for Ulimits/Rlimits to kpod create/run
Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
Closes: #24
Approved by: mheon
Diffstat (limited to 'test')
-rw-r--r-- | test/kpod_run.bats | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/test/kpod_run.bats b/test/kpod_run.bats index bcc1d816d..203fcc0cc 100644 --- a/test/kpod_run.bats +++ b/test/kpod_run.bats @@ -90,3 +90,20 @@ function setup() { # echo "$output" # [ "$status" -eq 0 ] } + +IMAGE="docker.io/library/fedora:latest" + +@test "run limits test" { + + ${KPOD_BINARY} ${KPOD_OPTIONS} pull ${IMAGE} + + run ${KPOD_BINARY} ${KPOD_OPTIONS} run --ulimit rtprio=99 --cap-add=sys_nice ${IMAGE} cat /proc/self/sched + echo $output + [ "$status" -eq 0 ] + + run bash -c "export FOO=BAR; ${KPOD_BINARY} ${KPOD_OPTIONS} run --ulimit nofile=2048:2048 ${IMAGE} ulimit -n | tr -d '\r'" + echo $output + [ "$status" -eq 0 ] + [ "$output" = 2048 ] + +} |