wait-tests.sh 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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.5 2005/08/12 21:34:19 alex Exp $
  13. #
  14. [ "$1" -gt 0 ] 2> /dev/null && MAX="$1" || MAX=5
  15. # detect source directory
  16. [ -z "$srcdir" ] && srcdir=`dirname $0`
  17. PS_FLAGS="-f"
  18. ps $PS_FLAGS >/dev/null 2>&1
  19. [ $? -ne 0 ] && PS_FLAGS="a"
  20. # read in functions
  21. . ${srcdir}/functions.inc
  22. msg=0
  23. while true; do
  24. count=`ps $PS_FLAGS | grep "expect " | wc -l`
  25. count=`expr $count - 1`
  26. [ $count -le $MAX ] && break
  27. if [ $msg -lt 1 ]; then
  28. echo_n " waiting for processes to settle: "
  29. msg=1
  30. fi
  31. # there are still clients connected. Wait ...
  32. echo_n "$count>$MAX "
  33. sleep 1
  34. done
  35. [ $msg -gt 0 ] && echo "done: $count"
  36. exit 0
  37. # -eof-