From 1fc706bf3f41baf1385c05acff6e36f8904a49a7 Mon Sep 17 00:00:00 2001 From: Zach Brown Date: Tue, 26 Jan 2021 10:30:04 -0800 Subject: [PATCH] Filter hrtimer slow messages from dmesg When running in debug kernels in guests we can really bog down things enough to trigger hrtimer warnings. I don't think there's much we can reasonably do about that. 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 65353a04..1429fec8 100644 --- a/tests/funcs/filter.sh +++ b/tests/funcs/filter.sh @@ -59,5 +59,8 @@ t_filter_dmesg() # some tests mount w/o options re="$re|scoutfs .* error: Required mount option \"metadev_path\" not found" + # in debugging kernels we can slow things down a bit + re="$re|hrtimer: interrupt took .*" + egrep -v "($re)" }