]> git.ipfire.org Git - thirdparty/systemd.git/blob - test/TEST-03-JOBS/test.sh
test: disable QEMU based testing for TEST-16-EXTEND-TIMEOUT
[thirdparty/systemd.git] / test / TEST-03-JOBS / test.sh
1 #!/bin/bash
2 # -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
3 # ex: ts=8 sw=4 sts=4 et filetype=sh
4 set -e
5 TEST_DESCRIPTION="Job-related tests"
6 TEST_NO_QEMU=1
7
8 . $TEST_BASE_DIR/test-functions
9
10 test_setup() {
11 create_empty_image
12 mkdir -p $TESTDIR/root
13 mount ${LOOPDEV}p1 $TESTDIR/root
14
15 # Create what will eventually be our root filesystem onto an overlay
16 (
17 LOG_LEVEL=5
18 eval $(udevadm info --export --query=env --name=${LOOPDEV}p2)
19
20 setup_basic_environment
21
22 # setup the testsuite service
23 cat >$initdir/etc/systemd/system/testsuite.service <<EOF
24 [Unit]
25 Description=Testsuite service
26 After=multi-user.target
27
28 [Service]
29 ExecStart=/test-jobs.sh
30 Type=oneshot
31 EOF
32
33 # copy the units used by this test
34 cp $TEST_BASE_DIR/{hello.service,sleep.service,hello-after-sleep.target,unstoppable.service} \
35 $initdir/etc/systemd/system
36 cp test-jobs.sh $initdir/
37
38 setup_testsuite
39 ) || return 1
40 setup_nspawn_root
41
42 ddebug "umount $TESTDIR/root"
43 umount $TESTDIR/root
44 }
45
46 do_test "$@"