From 8c9bd8e6a8df8dd67ca8a049aec3a4df9cfa29ef Mon Sep 17 00:00:00 2001 From: David Sterba Date: Tue, 30 Aug 2022 21:28:41 +0200 Subject: [PATCH] btrfs-progs: tests: add matching line for extent leaks to scan-results The extent leaks are detected in debug builds but tests/scan-build.sh does not look for them, so add the match expression. Signed-off-by: David Sterba --- tests/scan-results.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/scan-results.sh b/tests/scan-results.sh index f935b1cd..62068a26 100755 --- a/tests/scan-results.sh +++ b/tests/scan-results.sh @@ -14,6 +14,7 @@ for i in *.txt; do *LeakSanitizer:*leak*) echo "SANITIZER REPORT: memory leak: $last" ;; *Warning:\ assertion*failed*) echo "ASSERTION WARNING: $last" ;; *command\ not\ found*) echo "COMMAND NOT FOUND: $last" ;; + *extent\ buffer\ leak*) echo "EXTENT BUFFER LEAK: $last" ;; *) : ;; esac done < "$i"