aboutsummaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-devtools/jq/jq/run-ptest
blob: 0e4c707e96a320551858cc777a603857dd864139 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

for test in optionaltest mantest jqtest onigtest shtest utf8test base64test; do
	./tests/${test}
	if [ $? -eq 0 ]; then
		echo "PASS: ${test}"
	else
		echo "FAIL: ${test}"
	fi
done