commit - ceef0580655e77e7e4dcbe6df180b015716f7e00
commit + 450251f082e0d9b4b1cbdf803e061ca5b5fcf9ab
blob - /dev/null
blob + e03499e5e8f911fdcd3b83999101afdca6c171c5 (mode 644)
--- /dev/null
+++ src/testsuite/functions.inc
+#!/bin/sh
+#
+# ngIRCd Test Suite
+# Copyright (c)2002-2004 by Alexander Barton (alex@barton.de)
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+# Please read the file COPYING, README and AUTHORS for more information.
+#
+# $Id: functions.inc,v 1.1 2004/09/06 22:04:06 alex Exp $
+#
+
+# test how to call echo to get output without newline
+echo -n | grep -- -n >/dev/null 2>&1
+if [ $? -eq 0 ]; then
+ ECHO_N=""; ECHO_C="\c"
+else
+ ECHO_N="-n"; ECHO_C=""
+fi
+
+echo_n()
+{
+ echo $ECHO_N "$*$ECHO_C"
+}
+
+# -eof-
blob - ac8ce8158f8866febed60a34a231a6f2bb00fdc1
blob + 8d6c650674d183706bd97ff66e69df107c5311b5
--- src/testsuite/start-server.sh
+++ src/testsuite/start-server.sh
#!/bin/sh
# ngIRCd Test Suite
-# $Id: start-server.sh,v 1.13 2004/09/04 19:14:46 alex Exp $
+# $Id: start-server.sh,v 1.14 2004/09/06 22:04:06 alex Exp $
[ -z "$srcdir" ] && srcdir=`dirname $0`
-echo -n " starting server ..."
+# read in functions
+. ${srcdir}/functions.inc
+echo_n " starting server ..."
+
# remove old logfiles
rm -rf logs *.log
blob - f732283dee39a8fa35cdde9d9b6a3f5f1605c8b5
blob + 256d512eeb17f7ad1787d71e6e22601561290399
--- src/testsuite/stop-server.sh
+++ src/testsuite/stop-server.sh
#!/bin/sh
# ngIRCd Test Suite
-# $Id: stop-server.sh,v 1.12 2004/09/06 20:22:30 alex Exp $
+# $Id: stop-server.sh,v 1.13 2004/09/06 22:04:06 alex Exp $
[ -z "$srcdir" ] && srcdir=`dirname $0`
-echo -n " stopping server ..."
+# read in functions
+. ${srcdir}/functions.inc
+echo_n " stopping server ..."
+
# stop test-server ...
pid=`./getpid.sh T-ngircd`
if [ -z "$pid" ]; then
blob - c9b31b8242b20c5bf009a7065ba9730c04962083
blob + 306433b036897d7d78aeebe0581b2982f98306a9
--- src/testsuite/stress-server.sh
+++ src/testsuite/stress-server.sh
# (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
# 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
[ $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=$?
# there are still clients connected. Wait ...
sleep 3
- echo -n "."
+ echo_n "."
done
[ $res -eq 0 ] && echo " ok." || echo " failure!"
blob - bbb76add9e7f29f8ca918b64bf5bef6d8284ed5b
blob + 2bd9ae402125adb05db0e5e0adf27e2e6712b8ec
--- src/testsuite/tests.sh
+++ src/testsuite/tests.sh
#!/bin/sh
# ngIRCd Test Suite
-# $Id: tests.sh,v 1.6 2004/09/04 19:14:46 alex Exp $
+# $Id: tests.sh,v 1.7 2004/09/06 22:04:06 alex Exp $
# detect source directory
[ -z "$srcdir" ] && srcdir=`dirname $0`
exit 1
fi
+# read in functions
+. ${srcdir}/functions.inc
+
type expect > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo " ${name}: \"expect\" not found."; exit 77
echo " ${name}: \"telnet\" not found."; exit 77
fi
-echo -n " running ${test} ..."
+echo_n " running ${test} ..."
expect ${srcdir}/${test}.e > logs/${test}.log 2>&1; r=$?
[ $r -eq 0 ] && echo " ok." || echo " failure!"
blob - 89eb88e23e5003ca35191acea374764ea79699a2
blob + dcf3aeca0c7a6b8a8de8e1a160fd94ca3aeafb60
--- src/testsuite/wait-tests.sh
+++ src/testsuite/wait-tests.sh
# (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information.
#
-# $Id: wait-tests.sh,v 1.3 2004/09/04 18:22:42 alex Exp $
+# $Id: wait-tests.sh,v 1.4 2004/09/06 22:04:06 alex Exp $
#
[ "$1" -gt 0 ] 2> /dev/null && MAX="$1" || MAX=5
ps $PS_FLAGS >/dev/null 2>&1
[ $? -ne 0 ] && PS_FLAGS="a"
+# read in functions
+. ${srcdir}/functions.inc
+
msg=0
while true; do
count=`ps $PS_FLAGS | grep "expect " | wc -l`
[ $count -le $MAX ] && break
if [ $msg -lt 1 ]; then
- echo -n " waiting for processes to settle: "
+ echo_n " waiting for processes to settle: "
msg=1
fi
# there are still clients connected. Wait ...
- echo -n "$count>$MAX "
+ echo_n "$count>$MAX "
sleep 1
done