From b2d3af73baeca9cca87eb275defd713a98528237 Mon Sep 17 00:00:00 2001 From: Matthew Heon Date: Wed, 21 Jul 2021 11:21:06 -0400 Subject: [PATCH] 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 --- test/system/090-events.bats | 1 + 1 file changed, 1 insertion(+) diff --git a/test/system/090-events.bats b/test/system/090-events.bats index d889bd7f97..22edaeee91 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 }