]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/TEST-32-OOMPOLICY/test.sh
test: drop redirection to tty in integration tests
[thirdparty/systemd.git] / test / TEST-32-OOMPOLICY / test.sh
CommitLineData
36869f33 1#!/bin/bash
36869f33
LP
2set -e
3TEST_DESCRIPTION="test OOM killer logic"
4TEST_NO_NSPAWN=1
5
6. $TEST_BASE_DIR/test-functions
7
8UNIFIED_CGROUP_HIERARCHY=yes
9
10test_setup() {
ec4cab49 11 create_empty_image_rootdir
36869f33
LP
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]
30Description=Testsuite service
31
32[Service]
33ExecStart=/testsuite.sh
34Type=oneshot
36869f33
LP
35MemoryAccounting=yes
36EOF
37 cp testsuite.sh $initdir/
38
39 setup_testsuite
cc469c3d 40 )
36869f33
LP
41}
42
43do_test "$@"