]> git.ipfire.org Git - thirdparty/systemd.git/blame - test/TEST-22-TMPFILES/test.sh
test: add function to reduce copied setup boilerplate
[thirdparty/systemd.git] / test / TEST-22-TMPFILES / test.sh
CommitLineData
e04fc13f 1#!/bin/bash
e04fc13f
FB
2set -e
3TEST_DESCRIPTION="Tmpfiles related tests"
4TEST_NO_QEMU=1
5
6. $TEST_BASE_DIR/test-functions
7
8test_setup() {
9 # create the basic filesystem layout
0ea21d9e 10 setup_basic_environment
51fa8591 11 mask_supporting_services
e04fc13f
FB
12 inst_binary mv
13 inst_binary stat
14 inst_binary seq
15 inst_binary xargs
9f36a8fb
FB
16 inst_binary mkfifo
17 inst_binary readlink
e04fc13f 18
e04fc13f
FB
19 # setup the testsuite service
20 cp testsuite.service $initdir/etc/systemd/system/
21 setup_testsuite
22
23 mkdir -p $initdir/testsuite
24 cp run-tmpfiles-tests.sh $initdir/testsuite/
25 cp test-*.sh $initdir/testsuite/
26
27 # create dedicated rootfs for nspawn (located in $TESTDIR/nspawn-root)
28 setup_nspawn_root
29}
30
31do_test "$@"