aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-connectivity/mbedtls/mbedtls/run-ptest
blob: 059ab4ecbb744bc08e9df3444a2f5d3d22ed59b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh

ptestdir=$(dirname "$(readlink -f "$0")")
cd "$ptestdir"/tests || exit

tests=$(find * -type f -name 'test_suite_*')

for f in $tests
do
    if test -x ./"$f"; then
        if ./"$f" > ./"$f".out 2> ./"$f".err; then
            echo "PASS: $f"
        else
            echo "FAIL: $f"
        fi
    fi
done