]> arthur.barton.de Git - ngircd.git/blob - src/testsuite/test-loop.sh
Test suite: clean up scripts
[ngircd.git] / src / testsuite / test-loop.sh
1 #!/bin/sh
2 #
3 # ngIRCd Test Suite
4 # Copyright (c)2001-2024 Alexander Barton (alex@barton.de) and Contributors.
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
13 # parse command line
14 [ "$1" -gt 0 ] 2>/dev/null && LOOPS="$1" || LOOPS=5
15 [ "$2" -gt 0 ] 2>/dev/null && WAIT="$2" || WAIT=5
16
17 # detect source directory
18 [ -z "$srcdir" ] && srcdir=`dirname "$0"`
19 set -u
20
21 loop=0
22 while [ ${loop} -lt $LOOPS ]; do
23         loop=`expr ${loop} + 1`
24         echo "      loop $loop/$LOOPS starting:"
25         for s in "$srcdir"/*-test; do
26                 sh "$s"; r=$?
27                 [ $r -ne 0 ] && exit $r
28                 sleep 1
29         done
30         if [ ${loop} -lt $LOOPS ]; then
31                 echo "      waiting $WAIT seconds ..."
32                 sleep $WAIT
33         fi
34 done