summaryrefslogtreecommitdiff
path: root/selftest
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2009-10-19 22:58:23 +1100
committerAndrew Tridgell <tridge@samba.org>2009-10-19 22:58:23 +1100
commit8d0959b2b17c650505cf4c68db807e551ba38816 (patch)
tree478b0f311c8ae09bcba0d2b811a05e7257a64d52 /selftest
parentd680729dfb09ebff844fb13a354cba1c0be22578 (diff)
downloadsamba-8d0959b2b17c650505cf4c68db807e551ba38816.tar.gz
selftest: try to get the valgrind errors showing again in the build farm
Diffstat (limited to 'selftest')
-rwxr-xr-xselftest/selftest.pl9
1 files changed, 3 insertions, 6 deletions
diff --git a/selftest/selftest.pl b/selftest/selftest.pl
index ef54320571c..2aae050590a 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;