r15918: Attempt to bring Solaris into make test. The Solaris shell does not like the
authorVolker Lendecke <vlendec@samba.org>
Sun, 28 May 2006 09:59:16 +0000 (09:59 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:17:13 +0000 (11:17 -0500)
isolated !.

Metze, can you check this?

Thanks,

Volker

source/script/tests/test_functions.sh

index f263677bfcfc2e0a1f0d8fa8a49f186d114434b1..882efa5cad03b8626f83f25b265c127e743f3ef2 100644 (file)
@@ -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 &