summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-05-28 09:59:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:17:13 -0500
commit096061c212ef9c45eb282d6e026336baf0e95547 (patch)
tree1fc8c8f00109a023aba5c8d9367a137c4ee1a50d
parent9b19549fd69db2c624ce1a1458d84ef96642c408 (diff)
downloadsamba-096061c212ef9c45eb282d6e026336baf0e95547.tar.gz
samba-096061c212ef9c45eb282d6e026336baf0e95547.tar.bz2
samba-096061c212ef9c45eb282d6e026336baf0e95547.zip
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)
-rw-r--r--source3/script/tests/test_functions.sh4
1 files changed, 2 insertions, 2 deletions
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 &