summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2014-12-13 11:38:49 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2014-12-13 11:40:00 -0800
commit3bfbee921b34cf3ac4684344255a3d5b14171903 (patch)
tree947482ca8cdd7daa3a820a6fb6315b8477ed304a /Makefile
parent225d720d6e9b473c7d6498e811b3f412472cc9ce (diff)
Makefile: Removed dependency of leakcheck on PROG.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8916119..b491d1f 100644
--- a/Makefile
+++ b/Makefile
@@ -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: