]> git.somenet.org - pub/jan/ewbs-dlv.git/blob - conntest.sh
GITOLITE.txt
[pub/jan/ewbs-dlv.git] / conntest.sh
1 #!/bin/bash
2
3 TESTS="`seq 1 1 15`"
4
5 if [[ "$1" != "" ]]; then
6         TESTS="$1"
7 fi
8
9 echo "Testing connect:"
10 for test in $(echo ${TESTS}) ; do
11         if [ -e "connect.test${test}.dl" ]; then
12                 echo "Running test ${test}:"
13                 ./dlv -silent c.dl psh.dl w.dl f.dl s.dl connect.dl connect.test${test}.dl connect.tester.dl -N=120
14         fi
15 done