summaryrefslogtreecommitdiffstats
path: root/retiolum/Makefile
diff options
context:
space:
mode:
authorroot <root@cband>2013-12-30 08:20:32 -0600
committerroot <root@cband>2013-12-30 08:20:32 -0600
commit11de3d6d4c62f7059cdb45992d7d0fec05dde0e4 (patch)
tree898b70e33843b9d2bf77ad2cd1d47501e4fbdf0a /retiolum/Makefile
parent9712ba4ba0c5ec5922d97c3503b71f6c0cb3cf53 (diff)
//retiolum: make test does now the right thing
Diffstat (limited to 'retiolum/Makefile')
-rwxr-xr-xretiolum/Makefile24
1 files changed, 24 insertions, 0 deletions
diff --git a/retiolum/Makefile b/retiolum/Makefile
index 7942b77c..54683469 100755
--- a/retiolum/Makefile
+++ b/retiolum/Makefile
@@ -28,3 +28,27 @@ startup:
hosts:
bin/update-retiolum-hosts || :;
sudo bin/patch-retiolum-hosts
+
+test:
+ @export PATH="$(CURDIR)/bin:$(PATH)"; \
+ tests="`find t -type f -executable`"; \
+ i=1; \
+ pids="";\
+ n=`echo "$$tests" | wc -l`; \
+ echo $$i..$$n; \
+ for exe in $$tests; do \
+ { \
+ ./$$exe; \
+ ret=$$?; \
+ case $$ret in 0) result=ok;; *) result='not ok';; esac; \
+ echo $$result $$i - $$exe; \
+ exit $$ret;\
+ } & \
+ pids="$${pids} $$!" \
+ i=$$(( i+1 )); \
+ done; \
+ ret=0;\
+ for pid in $$pids; do \
+ wait $$pid || ret=23;\
+ done; \
+ exit $$ret;