mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-01 12:19:28 +00:00
11 lines
95 B
Bash
11 lines
95 B
Bash
#!/bin/sh
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
dir=`dirname $0`
|
|
|
|
for ts in `dirname $0`/test-*.sh; do
|
|
sh $ts
|
|
done
|