mirror of
https://github.com/nasa/fpp.git
synced 2025-12-11 11:16:42 -06:00
11 lines
166 B
Bash
Executable File
11 lines
166 B
Bash
Executable File
#!/bin/sh
|
|
|
|
tests=`find . -name run | grep test | sed 's;^\./;;'`
|
|
for t in $tests
|
|
do
|
|
echo "[ $t ]"
|
|
dir=`dirname $t`
|
|
base=`basename $t`
|
|
(cd $dir; ./$base)
|
|
done
|