aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/nlohmann-json/files/run-ptest
blob: 2f00267d5001829175f697e4583664831d5796d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

cd tests
for atest in test-* ; do
    rm -rf tests.log
    ./${atest} > tests.log 2>&1
    if [ $? = 0 ] ; then
        echo "PASS: ${atest}"
    else
        echo "FAIL: ${atest}"
    fi
done