1b26a92962
Submitted by: Max Okumoto <okumotu@ucsd.edu> (partly, initial version)
17 lines
217 B
Bash
17 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
|