about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2005-12-30 22:13:21 +0000
committerAlexander Barton <alex@barton.de>2005-12-30 22:13:21 +0000
commitfb9707de98d1b15779779c55e266b92508d7e26c (patch)
tree4656f13c6ff845b74d38596eabe05b2be69c6e47
parentdb9afbbf0e890f4f84f908e733a74f28e565ff4b (diff)
downloadngircd-fb9707de98d1b15779779c55e266b92508d7e26c.tar.gz
ngircd-fb9707de98d1b15779779c55e266b92508d7e26c.zip
Added test if the stress-test expect script itself completes without errors.
-rwxr-xr-xsrc/testsuite/stress-server.sh12
1 files changed, 11 insertions, 1 deletions
diff --git a/src/testsuite/stress-server.sh b/src/testsuite/stress-server.sh
index 306433b0..0f85958e 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.15 2004/09/06 22:04:06 alex Exp $
+# $Id: stress-server.sh,v 1.16 2005/12/30 22:13:21 alex Exp $
 #
 
 # detect source directory
@@ -50,6 +50,16 @@ while [ ${no} -lt $CLIENTS ]; do
   no=`expr ${no} + 1`
 done
 
+# run first script and check if it succeeds
+echo_n "      checking stress script ..."
+expect tests/0.e > logs/stress-0.log 2> /dev/null
+if [ $? -ne 0 ]; then
+  echo " failure!"
+  exit 1
+else
+  echo " ok."
+fi
+
 no=0
 while [ ${no} -lt $CLIENTS ]; do
   expect tests/${no}.e > logs/stress-${no}.log 2> /dev/null &