From 096061c212ef9c45eb282d6e026336baf0e95547 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 28 May 2006 09:59:16 +0000 Subject: r15918: Attempt to bring Solaris into make test. The Solaris shell does not like the isolated !. Metze, can you check this? Thanks, Volker (This used to be commit c9542c64ce2a21671b8f4e30780e8a6e07ab6632) --- source3/script/tests/test_functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/script/tests') diff --git a/source3/script/tests/test_functions.sh b/source3/script/tests/test_functions.sh index f263677bfc..882efa5cad 100644 --- a/source3/script/tests/test_functions.sh +++ b/source3/script/tests/test_functions.sh @@ -40,7 +40,7 @@ samba3_check_or_start() { 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 @@ samba3_check_or_start() { 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 & -- cgit