diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2020-05-08 16:13:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-08 16:13:13 +0200 |
commit | f4e3ec5fd69a6cc831b63619c5772dbf5c6a11a6 (patch) | |
tree | 63b33c45a319edfc5dc2de549a765eba89c90ae9 /test/system/helpers.bash | |
parent | db9940fb42fb199d335dcd549ac24972ef89d5c0 (diff) | |
parent | 42c6aa1a4281d0ac1fc70fc95cca97506b25477e (diff) | |
download | podman-f4e3ec5fd69a6cc831b63619c5772dbf5c6a11a6.tar.gz podman-f4e3ec5fd69a6cc831b63619c5772dbf5c6a11a6.tar.bz2 podman-f4e3ec5fd69a6cc831b63619c5772dbf5c6a11a6.zip |
Merge pull request #6134 from vrothberg/systemd-unit-tests
fix and enable systemd system tests
Diffstat (limited to 'test/system/helpers.bash')
-rw-r--r-- | test/system/helpers.bash | 11 |
1 files changed, 0 insertions, 11 deletions
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 ######### |