]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/TEST-32-OOMPOLICY/test.sh
Merge pull request #13080 from keszybz/firstboot-fixes
[thirdparty/systemd.git] / test / TEST-32-OOMPOLICY / test.sh
1 #!/bin/bash
2 set -e
3 TEST_DESCRIPTION="test OOM killer logic"
4 TEST_NO_NSPAWN=1
5
6 . $TEST_BASE_DIR/test-functions
7
8 UNIFIED_CGROUP_HIERARCHY=yes
9
10 test_setup() {
11 create_empty_image_rootdir
12
13 (
14 LOG_LEVEL=5
15 eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
16
17 setup_basic_environment
18
19 # mask some services that we do not want to run in these tests
20 ln -fs /dev/null $initdir/etc/systemd/system/systemd-hwdb-update.service
21 ln -fs /dev/null $initdir/etc/systemd/system/systemd-journal-catalog-update.service
22 ln -fs /dev/null $initdir/etc/systemd/system/systemd-networkd.service
23 ln -fs /dev/null $initdir/etc/systemd/system/systemd-networkd.socket
24 ln -fs /dev/null $initdir/etc/systemd/system/systemd-resolved.service
25 ln -fs /dev/null $initdir/etc/systemd/system/systemd-machined.service
26
27 # setup the testsuite service
28 cat >$initdir/etc/systemd/system/testsuite.service <<EOF
29 [Unit]
30 Description=Testsuite service
31
32 [Service]
33 ExecStart=/testsuite.sh
34 Type=oneshot
35 StandardOutput=tty
36 StandardError=tty
37 MemoryAccounting=yes
38 EOF
39 cp testsuite.sh $initdir/
40
41 setup_testsuite
42 )
43 }
44
45 do_test "$@"