From e580f33f82f3fa5baef19c859f20313e54c415db Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Wed, 5 Jul 2023 14:00:36 -0400 Subject: [PATCH] Ignore loop device resizing messages. These occasionally trigger during tests. Signed-off-by: Auke Kok --- tests/funcs/filter.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/funcs/filter.sh b/tests/funcs/filter.sh index 766ab562..2ff9d286 100644 --- a/tests/funcs/filter.sh +++ b/tests/funcs/filter.sh @@ -85,5 +85,8 @@ t_filter_dmesg() re="$re|scoutfs .* error.*server failed to bind to.*" re="$re|scoutfs .* critical transaction commit failure.*" + # change-devices causes loop device resizing + re="$re|loop[0-9].* detected capacity change from.*" + egrep -v "($re)" }