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

22 lines
457 B
Bash
Raw Normal View History

2002-09-09 10:16:24 +00:00
#!/bin/sh
# ngIRCd Test Suite
# $Id: tests.sh,v 1.2 2002/09/09 22:56:07 alex Exp $
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 "SKIP: ${name} -- \"expect\" not found."; exit 77
fi
type telnet > /dev/null 2>&1
if [ $? -ne 0 ]; then
echo "SKIP: ${name} -- \"telnet\" not found."; exit 77
fi
2002-09-09 10:16:24 +00:00
echo " doing ${test} ..."
expect ${test}.e > logs/${test}.log
2002-09-09 10:16:24 +00:00
# -eof-