diff options
author | root <root@cband> | 2014-01-07 05:33:47 -0600 |
---|---|---|
committer | root <root@cband> | 2014-01-07 05:33:47 -0600 |
commit | 81b9c69fd4d989ccce4165997431c41c813e5344 (patch) | |
tree | c26c1ae7ea74fedd429c20ff7894c392546e8d66 /go/Makefile | |
parent | 515736f4300cc0e535e0632cd0094b49a835d053 (diff) |
go: add unfinished docker test"
Diffstat (limited to 'go/Makefile')
-rw-r--r-- | go/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/go/Makefile b/go/Makefile index 34d21caa..abbaf7fe 100644 --- a/go/Makefile +++ b/go/Makefile @@ -9,3 +9,27 @@ install: \ @! test -e $@ || { echo file already exists: $@; exit 23; } mkdir -p $(dir $@) 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; |