summaryrefslogtreecommitdiffstats
path: root/test/TEST-55-OOMD/test.sh
blob: 5e3096315caf9d24a91b000802db1d1cda11446b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/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() {
    local workspace="${1:?}"

    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
}

do_test "$@" 55