svn commit: samba r15918 - branches/SAMBA_3_0/source/script/tests trunk/source/script/tests

vlendec at samba.org vlendec at samba.org
Sun May 28 09:59:17 GMT 2006


Author: vlendec
Date: 2006-05-28 09:59:16 +0000 (Sun, 28 May 2006)
New Revision: 15918

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

Log:
Attempt to bring Solaris into make test. The Solaris shell does not like the
isolated !.

Metze, can you check this?

Thanks,

Volker

Modified:
   branches/SAMBA_3_0/source/script/tests/test_functions.sh
   trunk/source/script/tests/test_functions.sh


Changeset:
Modified: branches/SAMBA_3_0/source/script/tests/test_functions.sh
===================================================================
--- branches/SAMBA_3_0/source/script/tests/test_functions.sh	2006-05-28 08:30:35 UTC (rev 15917)
+++ branches/SAMBA_3_0/source/script/tests/test_functions.sh	2006-05-28 09:59:16 UTC (rev 15918)
@@ -40,7 +40,7 @@
 		rm -f $NMBD_TEST_LOG
 		echo -n "STARTING NMBD..."
 		((
-			if ! test -n "$NMBD_MAXTIME"; then
+			if test ! -n "$NMBD_MAXTIME"; then
 			    NMBD_MAXTIME=2700
 			fi
 			timelimit $NMBD_MAXTIME $NMBD_VALGRIND $SRCDIR/bin/nmbd -F -S --no-process-group -d0 -s $SERVERCONFFILE > $NMBD_TEST_LOG 2>&1 &
@@ -69,7 +69,7 @@
 		rm -f $SMBD_TEST_LOG
 		echo -n "STARTING SMBD..."
 		((
-			if ! test -n "$SMBD_MAXTIME"; then
+			if test ! -n "$SMBD_MAXTIME"; then
 			    SMBD_MAXTIME=2700
 			fi
 			timelimit $SMBD_MAXTIME $SMBD_VALGRIND $SRCDIR/bin/smbd -F -S --no-process-group -d0 -s $SERVERCONFFILE > $SMBD_TEST_LOG 2>&1 &

Modified: trunk/source/script/tests/test_functions.sh
===================================================================
--- trunk/source/script/tests/test_functions.sh	2006-05-28 08:30:35 UTC (rev 15917)
+++ trunk/source/script/tests/test_functions.sh	2006-05-28 09:59:16 UTC (rev 15918)
@@ -40,7 +40,7 @@
 		rm -f $NMBD_TEST_LOG
 		echo -n "STARTING NMBD..."
 		((
-			if ! test -n "$NMBD_MAXTIME"; then
+			if test ! -n "$NMBD_MAXTIME"; then
 			    NMBD_MAXTIME=2700
 			fi
 			timelimit $NMBD_MAXTIME $NMBD_VALGRIND $SRCDIR/bin/nmbd -F -S --no-process-group -d0 -s $SERVERCONFFILE > $NMBD_TEST_LOG 2>&1 &
@@ -69,7 +69,7 @@
 		rm -f $SMBD_TEST_LOG
 		echo -n "STARTING SMBD..."
 		((
-			if ! test -n "$SMBD_MAXTIME"; then
+			if test ! -n "$SMBD_MAXTIME"; then
 			    SMBD_MAXTIME=2700
 			fi
 			timelimit $SMBD_MAXTIME $SMBD_VALGRIND $SRCDIR/bin/smbd -F -S --no-process-group -d0 -s $SERVERCONFFILE > $SMBD_TEST_LOG 2>&1 &



More information about the samba-cvs mailing list