3 # look for some error messages in all test logs
10 ===\ Entering
*) last
="$line" ;;
11 *Assertion
*failed
*) echo "ASSERTION FAILED: $last" ;;
12 *runtime\ error
*) echo "RUNTIME ERROR (sanitizer): $last" ;;
13 *AddressSanitizer
*heap-use-after-free
*) echo "RUNTIME ERROR (use after free): $last" ;;
14 *LeakSanitizer
:*leak
*) echo "SANITIZER REPORT: memory leak: $last" ;;
15 *Warning
:\ assertion
*failed
*) echo "ASSERTION WARNING: $last" ;;
16 *command\ not\ found
*) echo "COMMAND NOT FOUND: $last" ;;