test-loop.sh 986 B

12345678910111213141516171819202122232425262728293031323334353637
  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: test-loop.sh,v 1.2 2004/09/04 19:14:46 alex Exp $
  13. #
  14. # detect source directory
  15. [ -z "$srcdir" ] && srcdir=`dirname $0`
  16. # parse command line
  17. [ "$1" -gt 0 ] 2> /dev/null && LOOPS="$1" || LOOPS=5
  18. [ "$2" -gt 0 ] 2> /dev/null && WAIT="$2" || WAIT=5
  19. loop=0
  20. while [ ${loop} -lt $LOOPS ]; do
  21. loop=`expr ${loop} + 1`
  22. echo " loop $loop/$LOOPS starting:"
  23. for s in $srcdir/*-test; do
  24. sh $s; r=$?
  25. [ $r -ne 0 ] && exit $r
  26. sleep 1
  27. done
  28. if [ ${loop} -lt $LOOPS ]; then
  29. echo " waiting $WAIT seconds ..."
  30. sleep $WAIT
  31. fi
  32. done
  33. # -eof-