From: Ian Jackson Date: Thu, 29 Oct 2015 02:07:33 +0000 (+0000) Subject: Testing: Makefile: always redirect stdin from /dev/null X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=cgi-auth-flexible.git;a=commitdiff_plain;h=54774bb1b49f08ab9a6c06576fb752095e09b675 Testing: Makefile: always redirect stdin from /dev/null make -j does this for all but the first job anyway. If we do it ourselves we will catch sooner ant silly bugs where we read from stdin. Signed-off-by: Ian Jackson --- diff --git a/tests/Makefile b/tests/Makefile index 2d8bb47..2d17a09 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -9,4 +9,4 @@ CHECKS := $(addprefix check-,$(TESTS)) all check: $(CHECKS) check-%: %.at - @ set -e; cd ..; tests/autotest tests/$^ + @ set -e; cd ..; tests/autotest tests/$^