summaryrefslogtreecommitdiffstats
path: root/tools/regression/usr.bin/make/all.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/regression/usr.bin/make/all.sh')
-rw-r--r--tools/regression/usr.bin/make/all.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/tools/regression/usr.bin/make/all.sh b/tools/regression/usr.bin/make/all.sh
new file mode 100644
index 0000000..42f9e73
--- /dev/null
+++ b/tools/regression/usr.bin/make/all.sh
@@ -0,0 +1,16 @@
+#!/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
OpenPOWER on IntegriCloud