From 216ee9711d749b1c9324f591215dca752ca18184 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Fri, 31 Oct 2025 10:23:19 -0700 Subject: [PATCH] Ignore slow quorum hb transfers in tests We're getting test failures from messages that our guests can be unresponsive. They sure can be. We don't need to fail for this one specific case. Signed-off-by: Zach Brown --- tests/funcs/filter.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/funcs/filter.sh b/tests/funcs/filter.sh index b5a1a3cf..5e4675b5 100644 --- a/tests/funcs/filter.sh +++ b/tests/funcs/filter.sh @@ -166,6 +166,9 @@ t_filter_dmesg() # perf warning that it adjusted sample rate re="$re|perf: interrupt took too long.*lowering kernel.perf_event_max_sample_rate.*" + # some ci test guests are unresponsive + re="$re|longest quorum heartbeat .* delay" + egrep -v "($re)" | \ ignore_harmless_unwind_kasan_stack_oob }