1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-02 09:47:23 +03:00

selftest: try to get the valgrind errors showing again in the build farm

This commit is contained in:
Andrew Tridgell 2009-10-19 22:58:23 +11:00
parent d680729dfb
commit 8d0959b2b1

View File

@ -885,11 +885,8 @@ my $failed = 0;
# if there were any valgrind failures, show them
foreach (<$prefix/valgrind.log*>) {
next unless (-s $_);
system("grep DWARF2.CFI.reader $_ > /dev/null");
if ($? >> 8 == 0) {
print "VALGRIND FAILURE\n";
$failed++;
system("cat $_");
}
print "VALGRIND FAILURE\n";
$failed++;
system("cat $_");
}
exit 0;