From 4851de27f1b61a2e22adeb1f3d5a03c5560554b5 Mon Sep 17 00:00:00 2001 From: David Sterba Date: Wed, 30 Aug 2017 16:56:23 +0200 Subject: [PATCH] btrfs-progs: tests: add more sanitizer message patterns to log scanner 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 89e34dd2..f935b1cd 100755 --- a/tests/scan-results.sh +++ b/tests/scan-results.sh @@ -11,6 +11,7 @@ for i in *.txt; do *Assertion*failed*) echo "ASSERTION FAILED: $last" ;; *runtime\ error*) echo "RUNTIME ERROR (sanitizer): $last" ;; *AddressSanitizer*heap-use-after-free*) echo "RUNTIME ERROR (use after free): $last" ;; + *LeakSanitizer:*leak*) echo "SANITIZER REPORT: memory leak: $last" ;; *Warning:\ assertion*failed*) echo "ASSERTION WARNING: $last" ;; *command\ not\ found*) echo "COMMAND NOT FOUND: $last" ;; *) : ;;