From: Guilhem Moulin Date: Mon, 3 Jun 2019 02:04:36 +0000 (+0200) Subject: `make test`: Only consider tests/*/run. X-Git-Url: https://git.g-eek.se/?a=commitdiff_plain;h=68cb68153a8257ee2f9a84b166ef47e712008c11;p=interimap.git `make test`: Only consider tests/*/run. --- 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