From 59e5eb6e9b012d90c76bfc02918c270e8d26ab08 Mon Sep 17 00:00:00 2001 From: Scott Worley Date: Tue, 29 Dec 2015 13:47:53 -0800 Subject: [PATCH] Use the existing list of tests rather than making a new list with a glob. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a8608d0..5994d06 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,7 @@ TESTS=$(subst .cc,,$(TEST_SRCS)) all: $(MAIN) $(TESTS) test: $(TESTS) - for t in ./*_test; do if ! $$t; then exit 1; fi ;done + for t in $(TESTS); do if ! ./$$t; then exit 1; fi ;done clean: rm -f *.o $(MAIN) $(TESTS) Makefile.bak -- 2.44.1