11 lines
183 B
Bash
Executable file
11 lines
183 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eux
|
|
set -o pipefail
|
|
|
|
if ! rpm -q systemd-tests; then
|
|
echo >&2 "Missing package 'systemd-tests'"
|
|
exit 1
|
|
fi
|
|
|
|
/usr/lib/systemd/tests/run-unit-tests.py --unsafe
|