9 lines
91 B
Bash
9 lines
91 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
dir=`dirname $0`
|
|
|
|
for ts in `dirname $0`/test-*.sh; do
|
|
sh $ts
|
|
done
|