From 42c6aa1a4281d0ac1fc70fc95cca97506b25477e Mon Sep 17 00:00:00 2001 From: Valentin Rothberg Date: Fri, 8 May 2020 11:50:07 +0200 Subject: fix and enable systemd system tests The systemd unit test never ran in CI and was broken for various reasons. Fix the test to execute Podman in systemd units and to also run generated units files. Note: more tests will be added in the future. The simple check for now will prevent regressions. Signed-off-by: Valentin Rothberg --- test/system/helpers.bash | 11 ----------- 1 file changed, 11 deletions(-) (limited to 'test/system/helpers.bash') diff --git a/test/system/helpers.bash b/test/system/helpers.bash index 51240edc9..7ec2105d1 100644 --- a/test/system/helpers.bash +++ b/test/system/helpers.bash @@ -252,17 +252,6 @@ function skip_if_remote() { fi } -######################### -# skip_if_not_systemd # ...with an optional message -######################### -function skip_if_not_systemd() { - if systemctl --user >/dev/null 2>&1; then - return - fi - - skip "${1:-no systemd or daemon does not respond}" -} - ######### # die # Abort with helpful message ######### -- cgit v1.2.3-54-g00ecf