mirror of
https://github.com/opnsense/src.git
synced 2026-04-14 05:47:18 -04:00
8 lines
91 B
Bash
8 lines
91 B
Bash
#!/bin/sh
|
|
# $FreeBSD$
|
|
|
|
dir=`dirname $0`
|
|
|
|
for ts in `dirname $0`/test-*.sh; do
|
|
sh $ts
|
|
done
|