From 450251f082e0d9b4b1cbdf803e061ca5b5fcf9ab Mon Sep 17 00:00:00 2001 From: Alexander Barton Date: Mon, 6 Sep 2004 22:04:06 +0000 Subject: Fixed echo without newline for systems not understanding "echo -n"; added new file "functions.inc" for functions usable by all test scripts. --- src/testsuite/stress-server.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'src/testsuite/stress-server.sh') diff --git a/src/testsuite/stress-server.sh b/src/testsuite/stress-server.sh index c9b31b82..306433b0 100755 --- a/src/testsuite/stress-server.sh +++ b/src/testsuite/stress-server.sh @@ -9,7 +9,7 @@ # (at your option) any later version. # Please read the file COPYING, README and AUTHORS for more information. # -# $Id: stress-server.sh,v 1.14 2004/09/04 19:14:46 alex Exp $ +# $Id: stress-server.sh,v 1.15 2004/09/06 22:04:06 alex Exp $ # # detect source directory @@ -38,6 +38,9 @@ fi # hello world! :-) echo " stressing server with $CLIENTS clients (be patient!):" +# read in functions +. ${srcdir}/functions.inc + # create scripts for expect(1) no=0 while [ ${no} -lt $CLIENTS ]; do @@ -57,7 +60,7 @@ while [ ${no} -lt $CLIENTS ]; do [ $MAX -gt 0 ] && $srcdir/wait-tests.sh $MAX done -echo -n " waiting for clients to complete: ." +echo_n " waiting for clients to complete: ." touch logs/check-idle.log while true; do expect ${srcdir}/check-idle.e >> logs/check-idle.log; res=$? @@ -66,7 +69,7 @@ while true; do # there are still clients connected. Wait ... sleep 3 - echo -n "." + echo_n "." done [ $res -eq 0 ] && echo " ok." || echo " failure!" -- cgit 1.4.1