diff options
author | Andrew Tridgell <tridge@samba.org> | 2009-10-19 22:58:23 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2009-10-19 22:58:23 +1100 |
commit | 8d0959b2b17c650505cf4c68db807e551ba38816 (patch) | |
tree | 478b0f311c8ae09bcba0d2b811a05e7257a64d52 | |
parent | d680729dfb09ebff844fb13a354cba1c0be22578 (diff) | |
download | samba-8d0959b2b17c650505cf4c68db807e551ba38816.tar.gz samba-8d0959b2b17c650505cf4c68db807e551ba38816.tar.bz2 samba-8d0959b2b17c650505cf4c68db807e551ba38816.zip |
selftest: try to get the valgrind errors showing again in the build farm
-rwxr-xr-x | selftest/selftest.pl | 9 |
1 files 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; |