btrfs-progs/tests/scan-results.sh
David Sterba 8d8de7c2e5 btrfs-progs: tests: add script to scan results for some known runtime errors
Signed-off-by: David Sterba <dsterba@suse.com>
2016-10-03 15:07:21 +02:00

17 lines
337 B
Bash
Executable file

#!/bin/sh
# look for some error messages in all test logs
for i in *.txt; do
echo "Scanning $i"
last=
while read line; do
case "$line" in
===\ Entering*) last="$line" ;;
*Assertion*failed*) echo "ASSERTION FAILED: $last" ;;
*runtime\ error*) echo "RUNTIME ERROR (sanitizer): $last" ;;
*) : ;;
esac
done < "$i"
done