summaryrefslogtreecommitdiffstats
path: root/util/Makefile
blob: 90f8bfb27f87a5d5014df7a3355f77e5b84c81ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
usage:;cat Makefile

test:
	@export PATH="$(PWD)/bin:$(PATH)"; \
		tests="`find t -type f -executable`"; \
		i=1; \
		n=`echo "$$tests" | wc -l`; \
		echo $$i..$$n; \
		for exe in $$tests; do \
			./$$exe; \
			case $$? in 0) result=ok;; *) result='not ok';; esac; \
			echo $$result $$i - $$exe; \
			(( i++ )); \
		done