selftest: try to get the valgrind errors showing again in the build farm
authorAndrew Tridgell <tridge@samba.org>
Mon, 19 Oct 2009 11:58:23 +0000 (22:58 +1100)
committerAndrew Tridgell <tridge@samba.org>
Mon, 19 Oct 2009 11:58:23 +0000 (22:58 +1100)
selftest/selftest.pl

index ef54320571c9e525aed4935846603544c30d5860..2aae050590afc7edd92a9c23fb1ce9e17e0feda3 100755 (executable)
@@ -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;