diff options
author | Matthew Heon <mheon@redhat.com> | 2021-07-21 11:21:06 -0400 |
---|---|---|
committer | Matthew Heon <mheon@redhat.com> | 2021-07-21 11:23:01 -0400 |
commit | 4376f14c30b8c30833c2ee49b4e12cdc9063ab43 (patch) | |
tree | 89a1c877c27191b5c6c1754e0ded44e7df597dc3 /test | |
parent | 782634334eaadb43e056571a57e76bd2ee9016f4 (diff) | |
download | podman-4376f14c30b8c30833c2ee49b4e12cdc9063ab43.tar.gz podman-4376f14c30b8c30833c2ee49b4e12cdc9063ab43.tar.bz2 podman-4376f14c30b8c30833c2ee49b4e12cdc9063ab43.zip |
Ensure journald events tests only run where supported
We don't support the journald events backend on RHEL8, for
example. So we can't unconditionally run these tests.
Partial fix for RHBZ1955166
Signed-off-by: Matthew Heon <mheon@redhat.com>
Diffstat (limited to 'test')
-rw-r--r-- | test/system/090-events.bats | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/system/090-events.bats b/test/system/090-events.bats index d889bd7f9..22edaeee9 100644 --- a/test/system/090-events.bats +++ b/test/system/090-events.bats @@ -81,6 +81,7 @@ function _events_disjunctive_filters() { @test "events with disjunctive filters - journald" { skip_if_remote "remote does not support --events-backend" + skip_if_journald_unavailable "system does not support journald events" _events_disjunctive_filters --events-backend=journald } |