From d26023e4a86045bdb86505992acd2b03a87a6875 Mon Sep 17 00:00:00 2001 From: baude Date: Tue, 6 Feb 2018 13:34:44 -0600 Subject: More ginkgo migration * attach * run_exit * save * tag * version * run_privileged -> privileged Signed-off-by: baude --- test/podman_run_memory.bats | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 test/podman_run_memory.bats (limited to 'test/podman_run_memory.bats') diff --git a/test/podman_run_memory.bats b/test/podman_run_memory.bats deleted file mode 100644 index 2eaebe104..000000000 --- a/test/podman_run_memory.bats +++ /dev/null @@ -1,39 +0,0 @@ -#!/usr/bin/env bats - -load helpers - -function teardown() { - cleanup_test -} - -function setup() { - copy_images -} - -@test "run memory test" { - run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --rm --memory=40m ${ALPINE} cat /sys/fs/cgroup/memory/memory.limit_in_bytes | tr -d '\r'" - echo $output - [ "$status" -eq 0 ] - [ "$output" = 41943040 ] -} - -@test "run memory-reservation test" { - run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --rm --memory-reservation=40m ${ALPINE} cat /sys/fs/cgroup/memory/memory.soft_limit_in_bytes | tr -d '\r'" - echo "$output" - [ "$status" -eq 0 ] - [ "$output" = 41943040 ] -} - -@test "run memory-swappiness test" { - run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --rm --memory-swappiness=15 ${ALPINE} cat /sys/fs/cgroup/memory/memory.swappiness | tr -d '\r'" - echo "$output" - [ "$status" -eq 0 ] - [ "$output" = 15 ] -} - -@test "run kernel-memory test" { - run bash -c "${PODMAN_BINARY} ${PODMAN_OPTIONS} run --rm --kernel-memory=40m ${ALPINE} cat /sys/fs/cgroup/memory/memory.kmem.limit_in_bytes | tr -d '\r'" - echo "$output" - [ "$status" -eq 0 ] - [ "$output" = 41943040 ] -} -- cgit v1.2.3-54-g00ecf