From 47df14af529dde9057e35ad0d0c77ca7b22813f3 Mon Sep 17 00:00:00 2001 From: Ed Santiago Date: Thu, 20 Jan 2022 11:28:41 -0700 Subject: System tests: fix for new systemd on rawhide systemd 250 on f36 has changed the output format of a message our tests rely on. This breaks bodhi gating tests. Fix test so it accepts a continually-growing set of systemd outputs. Signed-off-by: Ed Santiago --- test/system/255-auto-update.bats | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'test/system') diff --git a/test/system/255-auto-update.bats b/test/system/255-auto-update.bats index 7540270bd..5a8bf4218 100644 --- a/test/system/255-auto-update.bats +++ b/test/system/255-auto-update.bats @@ -373,8 +373,10 @@ EOF systemctl enable --now podman-auto-update-$cname.timer systemctl list-timers --all - # While systemd v245 and later uses 'Finished', older versions uses 'Started' for oneshot services - local expect='(Finished|Started) Podman auto-update testing service' + # systemd <245 displays 'Started Podman auto-update ...' + # systemd 245 - <250 displays 'Finished Podman auto-update ...' + # systemd 250 - ???? displays 'Finished - Podman auto-...' + local expect='(Started|Finished.*) Podman auto-update testing service' local failed_start=failed local count=0 while [ $count -lt 120 ]; do -- cgit v1.2.3-54-g00ecf