From ed2850e8cfcfab44805dcc0e0a89dd4ecf31e344 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Thu, 1 Sep 2022 18:29:17 -0400 Subject: [PATCH] tests: filter out the checksum seed output from dumpe2fs The checksum seed is randomly set (normally set from the UUID) so it will vary from run to run. So if it is present, we want to filter out from a test log file. Signed-off-by: Theodore Ts'o --- tests/filter.sed | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/filter.sed b/tests/filter.sed index 5fd68f3..265f458 100644 --- a/tests/filter.sed +++ b/tests/filter.sed @@ -28,6 +28,7 @@ s/\\015//g s/, csum 0x\([0-9a-f]*\)//g s/ csum 0x\([0-9a-f]*\)//g /^Checksum:/d +/^Checksum seed:/d s/while trying to open [^ ]*/while trying to open test.img/ s/he filesystem on [^ ]* /he filesystem on test.img / s/^[^ ]* contains a \([a-z]*\) file system /test.img contains a \1 file system / -- 1.8.3.1