diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2019-05-26 23:28:04 +0200 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2019-05-27 00:39:49 +0200 |
commit | 8e379c62a48d68cd5ab2a32c6fc9244b1ae94084 (patch) | |
tree | dd3656ac60fe10c1e1739a88350f77c2f2a417f9 /Makefile | |
parent | 456946609aa1e64a42578ff1c4962ea939d31da4 (diff) |
Add test-suite (requires dovecot-imapd).
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -31,7 +31,10 @@ all: pullimap.1 interimap.1 install: +test: + @for t in tests/*; do [ -d "$$t" ] || continue; ./tests/run "$$t" || exit 1; done + clean: rm -f pullimap.1 interimap.1 -.PHONY: all install clean +.PHONY: all install clean test |