1
0
mirror of https://github.com/osmarks/ngircd.git synced 2024-10-28 12:56:18 +00:00
ngircd/src/testsuite/tests.sh

25 lines
530 B
Bash
Raw Normal View History

2002-09-09 10:16:24 +00:00
#!/bin/sh
# ngIRCd Test Suite
# $Id: tests.sh,v 1.5 2004/09/04 14:22:38 alex Exp $
# detect source directory
[ -z "$srcdir" ] && srcdir=`dirname $0`
2002-09-09 10:16:24 +00:00
name=`basename $0`
test=`echo ${name} | cut -d '.' -f 1`
mkdir -p logs
2002-09-09 10:16:24 +00:00
type expect > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo " ${name}: \"expect\" not found."; exit 77
2002-09-09 10:16:24 +00:00
fi
type telnet > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo " ${name}: \"telnet\" not found."; exit 77
fi
2002-09-09 10:16:24 +00:00
echo " doing ${test} ..."
2002-09-12 02:28:44 +00:00
expect ${srcdir}/${test}.e > logs/${test}.log
2002-09-09 10:16:24 +00:00
# -eof-