]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - tools/regression/usr.bin/make/all.sh
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / tools / regression / usr.bin / make / all.sh
1 #!/bin/sh
2 # $FreeBSD$
3
4 # find all test scripts below our current directory
5 SCRIPTS=`find . -name test.t`
6
7 if [ -z "${SCRIPTS}" ] ; then
8         exit 0
9 fi
10
11 for i in ${SCRIPTS} ; do
12         (
13         cd `dirname $i`
14         sh ./test.t $1
15         )
16 done