aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-connectivity/zeromq/files/run-ptest
blob: 48b9cd9fc5cd4fd8b8e352964a79b287e3904f44 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

cd tests
for i in `ls *`; do
   if [ ./$i ] ; then
       echo "PASS: $i"
   else
       echo "FAIL: $i"
   fi
done