Fix typo in alternate mts.conf location support.
[mmh] / test / runalltests
1 #!/bin/sh
2
3 # Get full pathnames that we'll need.
4 cd `dirname $0`
5 testdir=`pwd`
6
7 # Always run setup-test in case the code or configuration has changed.
8 ./setup-test
9
10 status=0
11
12 # Note that we ignore *~ files as these are probably editor backups.
13 for i in `find . -name 'test-*[!~]' -type f`
14 do
15     $testdir/runtest $i || status=$?
16 done
17
18 exit $status