Andrew Geissler | ac970dd | 2021-02-12 15:32:45 -0600 | [diff] [blame^] | 1 | #!/bin/sh |
2 | |||||
3 | testbin="gpiod-test" | ||||
4 | ptestdir=$(dirname "$(readlink -f "$0")") | ||||
5 | cd $ptestdir/tests | ||||
6 | |||||
7 | ./$testbin | ||||
8 | if [ $? -ne 0 ]; then | ||||
9 | echo "FAIL: $testbin" | ||||
10 | else | ||||
11 | echo "PASS: $testbin" | ||||
12 | fi |