about summary refs log tree commit diff
path: root/src/testsuite/stress-server.sh
diff options
context:
space:
mode:
Diffstat (limited to 'src/testsuite/stress-server.sh')
-rwxr-xr-xsrc/testsuite/stress-server.sh9
1 files changed, 6 insertions, 3 deletions
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!"