blob: 4cda05d4464ef6ec81c546465a40142e5e7d6aad [file] [log] [blame]
Andrew Geisslerac970dd2021-02-12 15:32:45 -06001#!/bin/sh
2
3testbin="gpiod-test"
4ptestdir=$(dirname "$(readlink -f "$0")")
5cd $ptestdir/tests
6
7./$testbin
8if [ $? -ne 0 ]; then
9 echo "FAIL: $testbin"
10else
11 echo "PASS: $testbin"
12fi