aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libgpiod/files/run-ptest
blob: 4cda05d4464ef6ec81c546465a40142e5e7d6aad (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
if [ $? -ne 0 ]; then
	echo "FAIL: $testbin"
else
	echo "PASS: $testbin"
fi