diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2019-06-03 04:04:36 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2019-06-03 14:23:51 +0200 |
commit | 68cb68153a8257ee2f9a84b166ef47e712008c11 (patch) | |
tree | ba18cfc245139e16d61f67a97b65155f3f86053c | |
parent | db844d8979c17469012a079a051f60044532b6ed (diff) |
`make test`: Only consider tests/*/run.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |