summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.com>2017-08-30 16:56:23 +0200
committerDavid Sterba <dsterba@suse.com>2017-09-08 16:15:05 +0200
commit4851de27f1b61a2e22adeb1f3d5a03c5560554b5 (patch)
tree8af77479c1c4b84e2460246068bf77950a3fd1d2 /tests
parent87adfe8254b7d785d0a523166e4319d17f5fecbc (diff)
btrfs-progs: tests: add more sanitizer message patterns to log scanner
Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/scan-results.sh1
1 files changed, 1 insertions, 0 deletions
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" ;;
*) : ;;