From 68cb68153a8257ee2f9a84b166ef47e712008c11 Mon Sep 17 00:00:00 2001 From: Guilhem Moulin Date: Mon, 3 Jun 2019 04:04:36 +0200 Subject: `make test`: Only consider tests/*/run. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ec35011..b0e4d59 100644 --- a/Makefile +++ b/Makefile @@ -32,7 +32,7 @@ all: pullimap.1 interimap.1 install: test: - @for t in tests/*; do [ -d "$$t" ] || continue; ./tests/run "$$t" || exit 1; done + @for t in tests/*; do if [ -f "$$t/run" ]; then ./tests/run "$$t" || exit 1; fi; done clean: rm -f pullimap.1 interimap.1 -- cgit v1.2.3