summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/attr/attr/run-ptest
blob: 3e7a3a17a04785d4d588510038286001a7fdac66 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set +e
make test-suite.log
exitcode=$?
if [ $exitcode -ne 0 -a -e test-suite.log ]; then
    cat test-suite.log
fi
exit $exitcode