summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2006-09-14 03:13:02 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:18:38 -0500
commit48615ca0da4a4521fdf632ec3cbc45286919f996 (patch)
tree83bd08985f5422e065fda5fc68c1c6ae3434bc3a /source4/script
parentbdfecf3c9777bac276eb3d257ef55728e5dcc6ca (diff)
downloadsamba-48615ca0da4a4521fdf632ec3cbc45286919f996.tar.gz
samba-48615ca0da4a4521fdf632ec3cbc45286919f996.tar.bz2
samba-48615ca0da4a4521fdf632ec3cbc45286919f996.zip
r18494: don't count 'DWARF2 CFI reader' messages as valgrind failures
(This used to be commit f7eaa03d6f6f28408d8e6a7e33c540e50cbed3a1)
Diffstat (limited to 'source4/script')
-rwxr-xr-xsource4/script/tests/selftest.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/script/tests/selftest.sh b/source4/script/tests/selftest.sh
index a6b1cb7fc3..5b62af08a9 100755
--- a/source4/script/tests/selftest.sh
+++ b/source4/script/tests/selftest.sh
@@ -129,7 +129,7 @@ echo "END: $END ($ARG0)";
count=`find $PREFIX -name 'valgrind.log*' | wc -l`
if [ "$count" != 0 ]; then
for f in $PREFIX/valgrind.log*; do
- if [ -s $f ]; then
+ if [ -s $f ] && grep -v DWARF2.CFI.reader $f > /dev/null; then
echo "VALGRIND FAILURE";
failed=`expr $failed + 1`
cat $f