Bug #55503 MTR fails to filter LEAK SUMMARY from valgrind report of restarted servers

Was not covered by "skip" pattern
Replace with a more generic pattern for SUMMARY
This commit is contained in:
Bjorn Munch 2010-07-23 14:53:09 +02:00
parent 70dee54c03
commit 2994f8b7f1

View file

@ -3791,7 +3791,8 @@ sub extract_warning_lines ($$) {
if ($opt_valgrind_mysqld) {
# Skip valgrind summary from tests where server has been restarted
# Should this contain memory leaks, the final report will find it
$skip_valgrind= 1 if $line =~ /^==\d+== ERROR SUMMARY:/;
# Use a generic pattern for summaries
$skip_valgrind= 1 if $line =~ /^==\d+== [A-Z ]+ SUMMARY:/;
$skip_valgrind= 0 unless $line =~ /^==\d+==/;
next if $skip_valgrind;
}