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

cd tests
for i in test*[0-9] ; do
    if ./${i} | cmp -s "${i}.ans" - ; then
        echo "PASS: ${i}"
    else
        echo "FAIL: ${i}"
    fi
done