systemd/test
2015-11-19 17:15:26 +01:00
..
bus-policy bus-policy: also add in other bus policy tests from dbus1 2014-11-26 20:58:34 +01:00
loopy.service.d core: do not add dependencies to self 2014-08-07 20:42:58 -04:00
mocks Add mock fsck process 2015-02-18 16:33:46 +01:00
TEST-01-BASIC test: 01-basic: mask some services that currently don't run in qemu 2015-11-19 17:15:26 +01:00
TEST-02-CRYPTSETUP tests: various fixes 2015-11-10 18:01:15 +00:00
TEST-03-JOBS test: Fix typo in TEST-03-JOBS/test-jobs.sh 2015-11-06 13:01:21 -06:00
test-execute test-execute: Add tests for new PassEnvironment= directive 2015-11-11 07:55:23 -08:00
test-path test-path: move all related test files to a specific directory 2015-10-31 15:07:19 +01:00
.gitignore
a.service
b.service
basic.target test-engine: fix access to unit load path 2014-07-20 19:48:16 -04:00
c.service
d.service
daughter.service
e.service
end.service tests: various fixes 2015-11-10 18:01:15 +00:00
f.service
g.service
grandchild.service
h.service
hello-after-sleep.target
hello.service
loopy.service core: do not add dependencies to self 2014-08-07 20:42:58 -04:00
loopy2.service core: do not add dependencies to self 2014-08-07 20:42:58 -04:00
loopy3.service core: warn when merged units have conflicting dependencies 2014-08-07 20:46:49 -04:00
loopy4.service core: warn when merged units have conflicting dependencies 2014-08-07 20:46:49 -04:00
Makefile
parent-deep.slice
parent.slice
README.testsuite remove gudev and gtk-doc 2015-06-03 00:22:53 +02:00
rule-syntax-check.py udev: remove WAIT_FOR key 2015-06-30 19:57:40 +02:00
sched_idle_bad.service
sched_idle_ok.service
sched_rr_bad.service
sched_rr_change.service
sched_rr_ok.service
shutdown.target test-engine: fix access to unit load path 2014-07-20 19:48:16 -04:00
sleep.service
sockets.target test-engine: fix access to unit load path 2014-07-20 19:48:16 -04:00
son.service
splash.bmp sd-boot: add EFI boot manager and stub loader 2015-02-17 14:36:59 +01:00
sys.tar.xz
sysinit.target test-engine: fix access to unit load path 2014-07-20 19:48:16 -04:00
sysv-generator-test.py sysv-generator test: Fix random ordering failure 2015-07-01 07:34:23 +02:00
test-efi-create-disk.sh boot: efi - remove custom splash support 2015-02-26 19:51:08 +01:00
test-functions test: disable nspawn checks if machine wasn't booted with systemd 2015-11-19 17:14:44 +01:00
testsuite.target
timers.target test-engine: fix access to unit load path 2014-07-20 19:48:16 -04:00
udev-test.pl test: udev - Signal that test was skipped when running as non-root 2015-08-30 22:10:30 -07:00
unstoppable.service tests: fix unstoppable service 2015-11-12 03:24:10 +00:00

The extended testsuite only works with uid=0. It contains of several
subdirectories named "test/TEST-??-*", which are run one by one.

To run the extended testsuite do the following:

$ make all
$ cd test
$ sudo make clean check
...
make[1]: Entering directory `/mnt/data/harald/git/systemd/test/TEST-01-BASIC'
Making all in .
Making all in po
TEST: Basic systemd setup [OK]
make[1]: Leaving directory `/mnt/data/harald/git/systemd/test/TEST-01-BASIC'
...

If one of the tests fails, then $subdir/test.log contains the log file of
the test.

To debug a special testcase of the testsuite do:

$ make all
$ cd test/TEST-01-BASIC
$ sudo make clean setup run

QEMU
====

If you want to log in the testsuite virtual machine, you can specify
additional kernel command line parameter with $KERNEL_APPEND.

$ sudo make KERNEL_APPEND="systemd.unit=multi-user.target" clean setup run

you can even skip the "clean" and "setup" if you want to run the machine again.

$ sudo make KERNEL_APPEND="systemd.unit=multi-user.target" run

You can specify a different kernel and initramfs with $KERNEL_BIN and $INITRD.
(Fedora's default kernel path and initramfs are used by default)

$ sudo make KERNEL_BIN=/boot/vmlinuz-foo INITRD=/boot/initramfs-bar clean check

A script will try to find your QEMU binary. If you want to specify a different
one you can use $QEMU_BIN.

$ sudo make QEMU_BIN=/path/to/qemu/qemu-kvm clean check