aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2019-06-03 04:04:36 +0200
committerGuilhem Moulin <guilhem@fripost.org>2019-06-03 14:23:51 +0200
commit68cb68153a8257ee2f9a84b166ef47e712008c11 (patch)
treeba18cfc245139e16d61f67a97b65155f3f86053c
parentdb844d8979c17469012a079a051f60044532b6ed (diff)
`make test`: Only consider tests/*/run.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
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