chiark / gitweb /
resolve-host: use the usual log message when encountering a dbus parse failure
[elogind.git] / test / TEST-04-SECCOMP / test-seccomp.sh
1 #!/bin/bash -x
2
3 systemctl start will-fail.service
4 systemctl start will-fail2.service
5 systemctl start will-not-fail.service
6 systemctl start will-not-fail2.service
7 systemctl is-failed will-fail.service || exit 1
8 systemctl is-failed will-fail2.service || exit 1
9 systemctl is-failed will-not-fail.service && exit 1
10 systemctl is-failed will-not-fail2.service && exit 1
11
12 touch /testok
13 exit 0