aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-dbs/leveldb/leveldb/run-ptest
blob: 9ae70c1284d1fb178a1ae48ca605ef49b019c70c (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for test in *_test; do
    if ./${test}; then
        echo "PASS: ${test}"
    else
        echo "FAIL: ${test}"
    fi
done