2002-09-09 12:16:24 +02:00
|
|
|
#!/bin/sh
|
|
|
|
# ngIRCd Test Suite
|
2002-09-24 00:07:42 +02:00
|
|
|
|
|
|
|
[ -z "$srcdir" ] && srcdir=`dirname $0`
|
2002-09-09 12:16:24 +02:00
|
|
|
|
2004-09-07 00:04:06 +02:00
|
|
|
# read in functions
|
|
|
|
. ${srcdir}/functions.inc
|
|
|
|
|
2008-11-13 22:46:06 +01:00
|
|
|
if [ -n "$1" ]; then
|
|
|
|
id="$1"; shift
|
|
|
|
else
|
|
|
|
id="1"
|
|
|
|
fi
|
|
|
|
|
2012-09-24 22:25:58 +02:00
|
|
|
echo_n "starting server ${id} ..."
|
2002-09-09 12:16:24 +02:00
|
|
|
|
2008-11-13 22:46:06 +01:00
|
|
|
# remove old logfiles, if this is the first server (ID 1)
|
|
|
|
[ "$id" = "1" ] && rm -rf logs *.log
|
2002-09-12 04:27:30 +02:00
|
|
|
|
2003-08-22 13:31:18 +02:00
|
|
|
# check weather getpid.sh returns valid PIDs. If not, don't start up the
|
|
|
|
# test-server, because we won't be able to kill it at the end of the test.
|
2002-11-10 15:28:06 +01:00
|
|
|
./getpid.sh sh > /dev/null 2>&1
|
2002-09-20 16:46:55 +02:00
|
|
|
if [ $? -ne 0 ]; then
|
2004-09-04 21:14:46 +02:00
|
|
|
echo " getpid.sh failed!"
|
2002-09-20 16:46:55 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2003-08-22 13:31:18 +02:00
|
|
|
# check if there is a test-server already running
|
2008-11-13 22:46:06 +01:00
|
|
|
./getpid.sh T-ngircd${id} >/dev/null 2>&1
|
2003-08-22 13:31:18 +02:00
|
|
|
if [ $? -eq 0 ]; then
|
2008-11-13 22:46:06 +01:00
|
|
|
echo " failure: test-server ${id} already running!"
|
2003-08-22 13:31:18 +02:00
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
# generate MOTD for test-server
|
2008-11-13 22:46:06 +01:00
|
|
|
echo "This is an ngIRCd Test Server" > ngircd-test${id}.motd
|
2002-09-09 12:16:24 +02:00
|
|
|
|
2014-01-10 19:56:08 +01:00
|
|
|
# glibc memory checking, see malloc(3)
|
|
|
|
MALLOC_CHECK_=3
|
|
|
|
export MALLOC_CHECK_
|
|
|
|
|
2003-08-22 13:31:18 +02:00
|
|
|
# starting up test-server ...
|
2008-11-13 22:46:06 +01:00
|
|
|
./T-ngircd${id} -n -f ${srcdir}/ngircd-test${id}.conf $* \
|
|
|
|
>ngircd-test${id}.log 2>&1 &
|
2002-09-09 12:16:24 +02:00
|
|
|
sleep 1
|
|
|
|
|
2003-08-22 13:31:18 +02:00
|
|
|
# validate running test-server
|
2008-11-13 22:46:06 +01:00
|
|
|
pid=`./getpid.sh T-ngircd${id}`
|
2004-09-04 21:14:46 +02:00
|
|
|
[ -n "$pid" ] && kill -0 $pid > /dev/null 2>&1; r=$?
|
|
|
|
|
|
|
|
[ $r -eq 0 ] && echo " ok." || echo " failure!"
|
2008-12-03 16:49:55 +01:00
|
|
|
exit $r
|
2002-09-09 12:16:24 +02:00
|
|
|
|
|
|
|
# -eof-
|