btrfs-progs: tests: teach scan-results about more errors
ASAN detects use after free. Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
3934ba255d
commit
0bd0d9c062
|
@ -10,6 +10,8 @@ for i in *.txt; do
|
|||
===\ Entering*) last="$line" ;;
|
||||
*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" ;;
|
||||
*Warning:\ assertion*failed*) echo "ASSERTION WARNING: $last" ;;
|
||||
*) : ;;
|
||||
esac
|
||||
done < "$i"
|
||||
|
|
Loading…
Reference in New Issue