opnsense-src/tools/regression/usr.bin/make/all.sh
2012-05-30 22:26:16 +00:00

16 lines
217 B
Bash
Executable file

#!/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