mirror of
https://github.com/systemd/systemd.git
synced 2024-11-23 18:23:32 +08:00
412e2a6487
When running with sanitizers we need more memory otherwise the unit gets OOM killed.
69 lines
1.6 KiB
Bash
Executable File
69 lines
1.6 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
# shellcheck source=test/units/util.sh
|
|
. "$(dirname "$0")"/util.sh
|
|
|
|
pre=test05
|
|
cat >/run/systemd/system/"$pre"alpha.slice <<EOF
|
|
[Slice]
|
|
MemoryMax=400M
|
|
MemoryHigh=400M
|
|
TasksMax=400
|
|
EOF
|
|
|
|
cat >/run/systemd/system/"$pre"alpha-beta.slice <<EOF
|
|
[Slice]
|
|
MemoryMax=100M
|
|
MemoryHigh=100M
|
|
TasksMax=100
|
|
EOF
|
|
|
|
cat >/run/systemd/system/"$pre"alpha-beta-gamma.slice <<EOF
|
|
[Slice]
|
|
MemoryMax=200M
|
|
MemoryHigh=200M
|
|
TasksMax=200
|
|
EOF
|
|
|
|
systemctl daemon-reload
|
|
|
|
srv=probe.service
|
|
slc0="$pre"alpha.slice
|
|
slc="$pre"alpha-beta-gamma.slice
|
|
|
|
systemd-run --unit "$srv" --slice "$slc" \
|
|
-p MemoryMax=50M \
|
|
-p MemoryHigh=50M \
|
|
-p TasksMax=50 \
|
|
sleep inf
|
|
|
|
# Compare with inequality because test can run in a constrained container
|
|
assert_le "$(systemctl show -P EffectiveMemoryMax "$srv")" "52428800"
|
|
assert_le "$(systemctl show -P EffectiveMemoryHigh "$srv")" "52428800"
|
|
assert_le "$(systemctl show -P EffectiveTasksMax "$srv")" "50"
|
|
|
|
systemctl stop "$srv"
|
|
|
|
systemd-run --unit "$srv" --slice "$slc" \
|
|
sleep inf
|
|
|
|
assert_le "$(systemctl show -P EffectiveMemoryMax "$srv")" "104857600"
|
|
assert_le "$(systemctl show -P EffectiveMemoryHigh "$srv")" "104857600"
|
|
assert_le "$(systemctl show -P EffectiveTasksMax "$srv")" "100"
|
|
|
|
systemctl set-property "$slc0" \
|
|
MemoryMax=50M \
|
|
MemoryHigh=50M \
|
|
TasksMax=50
|
|
|
|
assert_le "$(systemctl show -P EffectiveMemoryMax "$srv")" "52428800"
|
|
assert_le "$(systemctl show -P EffectiveMemoryHigh "$srv")" "52428800"
|
|
assert_le "$(systemctl show -P EffectiveTasksMax "$srv")" "50"
|
|
|
|
systemctl stop "$srv"
|
|
|
|
rm -f /run/systemd/system/"$pre"* || :
|