]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/TEST-19-DELEGATE/test.sh
Merge pull request #13092 from keszybz/coverity-fixes
[thirdparty/systemd.git] / test / TEST-19-DELEGATE / test.sh
1 #!/bin/bash
2 set -e
3 TEST_DESCRIPTION="test cgroup delegation in the unified hierarchy"
4 TEST_NO_NSPAWN=1
5
6 . $TEST_BASE_DIR/test-functions
7 QEMU_TIMEOUT=180
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=/bin/bash -x /testsuite.sh
34 Type=oneshot
35 StandardOutput=tty
36 StandardError=tty
37 EOF
38 cp testsuite.sh $initdir/
39
40 setup_testsuite
41 )
42 }
43
44 do_test "$@"