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

tridge at samba.org tridge at samba.org
Mon Aug 1 16:01:09 GMT 2005


Author: tridge
Date: 2005-08-01 16:01:09 +0000 (Mon, 01 Aug 2005)
New Revision: 8882

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

Log:
- enable the domain master 

- start adding support for showing valgrind results in build farm tests


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	2005-08-01 04:16:20 UTC (rev 8881)
+++ branches/SAMBA_4_0/source/script/tests/selftest.sh	2005-08-01 16:01:09 UTC (rev 8882)
@@ -94,6 +94,8 @@
 	tls enabled = $TLS_ENABLED
 	panic action = $SRCDIR/script/gdb_backtrace %PID% %PROG%
 	wins support = yes
+	domain master = yes
+	domain logons = yes
 
 [tmp]
 	path = $TMPDIR
@@ -146,4 +148,14 @@
 echo "START: $START ($0)";
 echo "END:   $END ($0)";
 
+# if there were any valgrind failures, show them
+list=`find $PREFIX -name 'valgrind.log*'`
+if [ x$list != x ]; then
+    for f in $PREFIX/valgrind.log*; do
+	echo "VALGRIND FAILURE";
+	failed=`expr $failed + 1`
+	cat $f
+    done
+fi
+
 teststatus $0 $failed



More information about the samba-cvs mailing list