diff options
Diffstat (limited to 'test/kpod_run.bats')
-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 ] + +} |