svn commit: samba r18494 - in branches/SAMBA_4_0/source/script/tests: .

tridge at samba.org tridge at samba.org
Thu Sep 14 03:13:03 GMT 2006


Author: tridge
Date: 2006-09-14 03:13:02 +0000 (Thu, 14 Sep 2006)
New Revision: 18494

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=18494

Log:

don't count 'DWARF2 CFI reader' messages as valgrind failures

Modified:
   branches/SAMBA_4_0/source/script/tests/selftest.sh


Changeset:
Modified: branches/SAMBA_4_0/source/script/tests/selftest.sh
===================================================================
--- branches/SAMBA_4_0/source/script/tests/selftest.sh	2006-09-14 02:37:00 UTC (rev 18493)
+++ branches/SAMBA_4_0/source/script/tests/selftest.sh	2006-09-14 03:13:02 UTC (rev 18494)
@@ -129,7 +129,7 @@
 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



More information about the samba-cvs mailing list