aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libusb/libusb-compat/run-ptest
blob: 901662d6967404f07ce404e9c7bdca47b98c7552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh

rc=0
for TEST in lsusb testlibusb; do
	if ! ./$TEST ; then
		echo "FAIL: $TEST"
		rc=$((rc + 1))
	else
		echo "PASS: $TEST"
	fi
done

# return number of failed tests
exit $rc