summaryrefslogtreecommitdiffstats
path: root/tools/regression/usr.bin/make/all.sh
blob: 42f9e73e6abca054d3e3c758a566147950399e8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
# $FreeBSD$

# find all test scripts below our current directory
SCRIPTS=`find . -name test.t`

if [ -z "${SCRIPTS}" ] ; then
	exit 0
fi

for i in ${SCRIPTS} ; do
	(
	cd `dirname $i`
	sh ./test.t $1
	)
done
OpenPOWER on IntegriCloud