From 54774bb1b49f08ab9a6c06576fb752095e09b675 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Thu, 29 Oct 2015 02:07:33 +0000 Subject: [PATCH] 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 --- tests/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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/$^