mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
7bf20e48bd
The logic to query test state was rather complex. I don't quite grok the point of ret=$((ret+1))… But afaics, the precise result was always ignored by the caller anyway.
23 lines
457 B
Bash
Executable File
23 lines
457 B
Bash
Executable File
#!/usr/bin/env bash
|
|
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"
|
|
dracut_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
|