diff options
author | John MacFarlane <jgm@berkeley.edu> | 2015-01-10 23:13:25 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2015-01-10 23:13:25 -0800 |
commit | cc43544dea5c2cebd5f1c6244c68e66fd2e85514 (patch) | |
tree | a4f0cf208ad51e99257351a855b7fdb5d174c65d /Makefile | |
parent | bfe4d148098717f1603cbe12ba1cf306db09ce3e (diff) |
'make leakcheck': check xml and man renderers as well.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -117,6 +117,8 @@ $(ALLTESTS): spec.txt leakcheck: $(ALLTESTS) cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) >/dev/null + cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t man >/dev/null + cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t xml >/dev/null fuzztest: { for i in `seq 1 10`; do \ |