From 98430f98257bbf5b769aec598c30aee60a3d69b6 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 30 Dec 2013 10:17:46 -0600 Subject: fix tests for docker_remote_punani --- ship/Makefile | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'ship/Makefile') diff --git a/ship/Makefile b/ship/Makefile index 0e9b8edf..4805613d 100644 --- a/ship/Makefile +++ b/ship/Makefile @@ -30,3 +30,27 @@ $(foreach exe, $(exesrcs), $(eval $(call buildrule,$(exe)))) $(finoutdir)/%: $(tmpoutdir)/% cp $< $@ + +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; -- cgit v1.2.3