From 8d0959b2b17c650505cf4c68db807e551ba38816 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 19 Oct 2009 22:58:23 +1100 Subject: selftest: try to get the valgrind errors showing again in the build farm --- selftest/selftest.pl | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/selftest/selftest.pl b/selftest/selftest.pl index ef54320571..2aae050590 100755 --- a/selftest/selftest.pl +++ b/selftest/selftest.pl @@ -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; -- cgit