aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/beecrypt/beecrypt/run-ptest
blob: 5bc7460be995c868a42f0b53f0d97c6df20bc5bb (plain)
1
2
3
4
5
#!/bin/sh

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