aboutsummaryrefslogtreecommitdiffstats
path: root/meta-networking/recipes-support/geoip/files/run-ptest
blob: 14e96191f38f756d754a31af74d9d2e11072b29f (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
pdir=`dirname $0`
cd ${pdir}/tests
for i in ./benchmark ./test-geoip-city ; do
	${i} 1>/dev/null 2>&1;
	if [ $? == 0 ]; then
		echo PASS: $i;
	else
		echo FAIL: $i;
	fi;
done