diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-12-13 11:38:49 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-12-13 11:40:00 -0800 |
commit | 3bfbee921b34cf3ac4684344255a3d5b14171903 (patch) | |
tree | 947482ca8cdd7daa3a820a6fb6315b8477ed304a /Makefile | |
parent | 225d720d6e9b473c7d6498e811b3f412472cc9ce (diff) |
Makefile: Removed dependency of leakcheck on PROG.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -113,7 +113,7 @@ testziparchive: $(ZIPARCHIVE) $(ALLTESTS): spec.txt python test/spec_tests.py --spec $< --dump-tests | python -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print "\n".join([test["markdown"] for test in tests]).encode("utf-8")' > $@ -leakcheck: $(ALLTESTS) $(PROG) +leakcheck: $(ALLTESTS) cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) >/dev/null fuzztest: |