From c5035a30e290ca602c01e41056225b9475fab399 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Tue, 21 Nov 2023 11:31:36 +0100 Subject: [PATCH] test: don't make the final vacuum multiple of 8M As this would usually mean we'd nuke everything, since there are two open journals - system and user - both being 8M in size. --- test/units/testsuite-04.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/units/testsuite-04.sh b/test/units/testsuite-04.sh index adcbf8b..2a8f797 100755 --- a/test/units/testsuite-04.sh +++ b/test/units/testsuite-04.sh @@ -4,7 +4,7 @@ set -eux set -o pipefail # Limit the maximum journal size -trap "journalctl --rotate --vacuum-size=16M" EXIT +trap "journalctl --rotate --vacuum-size=20M" EXIT # shellcheck source=test/units/test-control.sh . "$(dirname "$0")"/test-control.sh -- 2.7.4