aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libtinyxml2/files/run-ptest
blob: 870912672e1f8d3d18c56cd5bec02130ac89ab1a (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

for i in `ls xmltest`; do
    ./$i
    if [ $? -eq 0 ]; then
        echo "PASS: $i"
    else
        echo "FAIL: $i"
    fi
done