mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
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:
@ -3791,7 +3791,8 @@ sub extract_warning_lines ($$) {
|
|||||||
if ($opt_valgrind_mysqld) {
|
if ($opt_valgrind_mysqld) {
|
||||||
# Skip valgrind summary from tests where server has been restarted
|
# Skip valgrind summary from tests where server has been restarted
|
||||||
# Should this contain memory leaks, the final report will find it
|
# 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+==/;
|
$skip_valgrind= 0 unless $line =~ /^==\d+==/;
|
||||||
next if $skip_valgrind;
|
next if $skip_valgrind;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user