mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 00:51:24 +03:00
44 lines
921 B
Bash
44 lines
921 B
Bash
|
#!/bin/bash
|
||
|
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
|
||
|
# ex: ts=8 sw=4 sts=4 et filetype=sh
|
||
|
set -e
|
||
|
TEST_DESCRIPTION="test cgroup delegation in the unifier hierarchy"
|
||
|
TEST_NO_NSPAWN=1
|
||
|
|
||
|
. $TEST_BASE_DIR/test-functions
|
||
|
QEMU_TIMEOUT=180
|
||
|
UNIFIED_CGROUP_HIERARCHY=yes
|
||
|
|
||
|
test_setup() {
|
||
|
create_empty_image
|
||
|
mkdir -p $TESTDIR/root
|
||
|
mount ${LOOPDEV}p1 $TESTDIR/root
|
||
|
|
||
|
(
|
||
|
LOG_LEVEL=5
|
||
|
eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
|
||
|
|
||
|
setup_basic_environment
|
||
|
|
||
|
# setup the testsuite service
|
||
|
cat >$initdir/etc/systemd/system/testsuite.service <<EOF
|
||
|
[Unit]
|
||
|
Description=Testsuite service
|
||
|
|
||
|
[Service]
|
||
|
ExecStart=/bin/bash -x /testsuite.sh
|
||
|
Type=oneshot
|
||
|
StandardOutput=tty
|
||
|
StandardError=tty
|
||
|
EOF
|
||
|
cp testsuite.sh $initdir/
|
||
|
|
||
|
setup_testsuite
|
||
|
) || return 1
|
||
|
|
||
|
ddebug "umount $TESTDIR/root"
|
||
|
umount $TESTDIR/root
|
||
|
}
|
||
|
|
||
|
do_test "$@"
|