wait-tests.sh 1015 B

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