aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libcereal/files/run-ptest
blob: 9bc480aa7f0256303bca46cd59a637a4be4e338a (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