]> arthur.barton.de Git - ngircd-alex.git/blob - src/testsuite/wait-tests.sh
Added detection of flags for ps(1).
[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.2 2004/09/04 16:14:47 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 msg=0
22 while true; do
23   count=`ps $PS_FLAGS | grep "expect " | wc -l`
24   count=`expr $count - 1`
25
26   [ $count -le $MAX ] && break
27
28   if [ $msg -lt 1 ]; then
29     echo -n "      waiting for test scripts to settle: "
30     msg=1
31   fi
32
33   # there are still clients connected. Wait ...
34   echo -n "$count>$MAX "
35   sleep 1
36 done
37
38 [ $msg -gt 0 ] && echo "done: $count"
39 exit 0
40
41 # -eof-