X-Git-Url: https://diplodocus.org/git/nmh/blobdiff_plain/90950f1aa3d8d01e4b1a4a4b389f1bff7da94f45..6749991db7847b6b9fb253a55cc081b150867da5:/test/runalltests diff --git a/test/runalltests b/test/runalltests index 0497c52b..340be0a4 100755 --- a/test/runalltests +++ b/test/runalltests @@ -1,7 +1,17 @@ #!/bin/sh -# Note that we ignore *~ files as these are probably editor backups -for i in `find tests -name 'test-*[!~]' -type f`; +status=0 + +# Get full pathnames that we'll need. +cd `dirname $0` +testdir=`pwd` + +test -d testinstall || ./setup-test + +# Note that we ignore *~ files as these are probably editor backups. +for i in `find . -name 'test-*[!~]' -type f` do - ./runtest $i + $testdir/runtest $i || status=$? done + +exit $status