systemd/test/TEST-55-OOMD/test.sh

29 lines
609 B
Bash
Raw Normal View History

#!/usr/bin/env bash
# SPDX-License-Identifier: LGPL-2.1-or-later
set -e
TEST_DESCRIPTION="systemd-oomd Memory Pressure Test"
IMAGE_NAME="oomd"
# Need to set up swap
TEST_NO_NSPAWN=1
# shellcheck source=test/test-functions
. "${TEST_BASE_DIR:?}/test-functions"
test_append_files() {
2024-02-16 12:53:01 +00:00
local workspace="${1:?}"
2024-02-16 12:53:01 +00:00
image_install mkswap swapon swapoff stress
image_install -o btrfs
mkdir -p "${workspace:?}/etc/systemd/system/init.scope.d/"
cat >"${workspace:?}/etc/systemd/system/init.scope.d/test-55-oomd.conf" <<EOF
[Scope]
MemoryHigh=infinity
StartupMemoryHigh=10G
EOF
}
2021-03-05 09:36:04 +00:00
do_test "$@" 55