mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
16 lines
217 B
Bash
16 lines
217 B
Bash
#!/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
|