mirror of
https://github.com/systemd/systemd-stable.git
synced 2024-12-25 23:21:33 +03:00
24 lines
501 B
Bash
Executable File
24 lines
501 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -e
|
|
|
|
TEST_DESCRIPTION="systemd-oomd Memory Pressure Test"
|
|
IMAGE_NAME="oomd"
|
|
|
|
# shellcheck source=test/test-functions
|
|
. "${TEST_BASE_DIR:?}/test-functions"
|
|
|
|
test_append_files() {
|
|
# Create a swap device
|
|
(
|
|
mkswap "${LOOPDEV:?}p2"
|
|
image_install swapon swapoff
|
|
|
|
cat >>"${initdir:?}/etc/fstab" <<EOF
|
|
UUID=$(blkid -o value -s UUID "${LOOPDEV}p2") none swap defaults 0 0
|
|
EOF
|
|
)
|
|
}
|
|
|
|
do_test "$@" 55
|