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

testbin="gpiod-test"
ptestdir=$(dirname "$(readlink -f "$0")")
cd $ptestdir/tests

./$testbin > ./$testbin.out
if [ $? -ne 0 ]; then
	echo "FAIL: $testbin"
else
	echo "PASS: $testbin"
fi