]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/wait-tests.sh
Added functions.inc to EXTRA_DIST files.
[ngircd-alex.git] / src / testsuite / wait-tests.sh
1 #!/bin/sh
2 #
3 # ngIRCd Test Suite
4 # Copyright (c)2002-2004 by Alexander Barton (alex@barton.de)
5 #
6 # This program is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 # Please read the file COPYING, README and AUTHORS for more information.
11 #
12 # $Id: wait-tests.sh,v 1.4 2004/09/06 22:04:06 alex Exp $
13 #
14
15 [ "$1" -gt 0 ] 2> /dev/null && MAX="$1" || MAX=5
16
17 PS_FLAGS="-f"
18 ps $PS_FLAGS >/dev/null 2>&1
19 [ $? -ne 0 ] && PS_FLAGS="a"
20
21 # read in functions
22 . ${srcdir}/functions.inc
23
24 msg=0
25 while true; do
26   count=`ps $PS_FLAGS | grep "expect " | wc -l`
27   count=`expr $count - 1`
28
29   [ $count -le $MAX ] && break
30
31   if [ $msg -lt 1 ]; then
32     echo_n "      waiting for processes to settle: "
33     msg=1
34   fi
35
36   # there are still clients connected. Wait ...
37   echo_n "$count>$MAX "
38   sleep 1
39 done
40
41 [ $msg -gt 0 ] && echo "done: $count"
42 exit 0
43
44 # -eof-