diff --git a/test/Makefile b/test/Makefile new file mode 100644 index 000000000..b4a1feb85 --- /dev/null +++ b/test/Makefile @@ -0,0 +1,20 @@ +# Run tests +# +# Copyright (c) 2014 Christian Couder +# MIT Licensed; see the LICENSE file in this repository. +# + +T = $(sort $(wildcard t[0-9][0-9][0-9][0-9]-*.sh)) + +all: clean $(T) aggregate + +clean: + -rm -r test-results + +$(T): + @echo "*** $@ ***"; ./$@ + +aggregate: + ./test-aggregate-results.sh + +.PHONY: all clean $(T) aggregate