blob: 5096506b6e14c48794552a2d14804b5984451138 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
usage:;cat Makefile
test:
@export PATH="$(CURDIR)/bin:$(PATH)"; \
tests="`find t -type f -executable`"; \
i=1; \
n=`echo "$$tests" | wc -l`; \
echo $$i..$$n; \
for exe in $$tests; do \
if ./$$exe; then \
echo ok $$i - $$exe; \
else \
echo not ok $$i - $$exe; \
touch .test-not-ok; \
fi & \
i=$$(( i+1 )); \
done; \
wait; \
if test -e .test-not-ok; then \
rm .test-not-ok; \
exit 23; \
fi
|