From 5358763b41f6720e5e9c31f50e699308e845f52b Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 11 Nov 2005 00:50:40 +0000 Subject: r11659: allow the max runtime for smbtorture and smbd to be controlled on a per-host basis in the build farm (This used to be commit c8185fe414ef686a52327f420ee81ce09b983c3c) --- source4/script/tests/selftest.sh | 6 +++++- source4/script/tests/test_functions.sh | 7 +++---- 2 files changed, 8 insertions(+), 5 deletions(-) (limited to 'source4/script') diff --git a/source4/script/tests/selftest.sh b/source4/script/tests/selftest.sh index 2648e40b03..95f2b3e767 100755 --- a/source4/script/tests/selftest.sh +++ b/source4/script/tests/selftest.sh @@ -21,6 +21,10 @@ then exit fi +if [ -z "$TORTURE_MAXTIME" ]; then + TORTURE_MAXTIME=300 +fi + PREFIX=$1 PREFIX=`echo $PREFIX | sed s+//+/+` @@ -168,7 +172,7 @@ smbd_check_or_start SOCKET_WRAPPER_DEFAULT_IFACE=26 export SOCKET_WRAPPER_DEFAULT_IFACE TORTURE_INTERFACES='127.0.0.26/8,127.0.0.27/8,127.0.0.28/8,127.0.0.29/8,127.0.0.30/8,127.0.0.31/8' -TORTURE_OPTIONS="--maximum-runtime=300 --option=interfaces=$TORTURE_INTERFACES $CONFIGURATION" +TORTURE_OPTIONS="--maximum-runtime=$TORTURE_MAXTIME --option=interfaces=$TORTURE_INTERFACES $CONFIGURATION" export TORTURE_OPTIONS START=`date` diff --git a/source4/script/tests/test_functions.sh b/source4/script/tests/test_functions.sh index 44d55c99c2..5b9c63a9eb 100755 --- a/source4/script/tests/test_functions.sh +++ b/source4/script/tests/test_functions.sh @@ -19,11 +19,10 @@ smbd_check_or_start() { echo -n "STARTING SMBD..." (( - runtime=2700 - if [ -n "$SMBD_VALGRIND" ]; then - runtime=7200 + if [ -z "$SMBD_MAXTIME" ]; then + SMBD_MAXTIME=2700 fi - $SMBD_VALGRIND $SRCDIR/bin/smbd --maximum-runtime=$runtime -d1 -s $CONFFILE -M single -i < $SMBD_TEST_FIFO > $SMBD_TEST_LOG 2>&1; + $SMBD_VALGRIND $SRCDIR/bin/smbd --maximum-runtime=$SMBD_MAXTIME -d1 -s $CONFFILE -M single -i < $SMBD_TEST_FIFO > $SMBD_TEST_LOG 2>&1; ret=$?; rm -f $SMBD_TEST_FIFO; if [ -n "$SOCKET_WRAPPER_DIR" -a -d "$SOCKET_WRAPPER_DIR" ]; then -- cgit