summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2015-01-07 11:25:14 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2015-01-07 11:25:14 -0800
commitea17d4a1aac6d82d294a733068ffc6f65329797a (patch)
tree185c353cf6122d5ab8a26bfcd07c70a76d12397f /Makefile
parent52c591d75433b16cf32f4fae319ccb60b20f6ae7 (diff)
Fixed 'make alltest.md'.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d026bfa..b1235ea 100644
--- a/Makefile
+++ b/Makefile
@@ -113,7 +113,7 @@ testziparchive: $(ZIPARCHIVE)
mkdir build && cd build && cmake .. && make && ctest -V
$(ALLTESTS): spec.txt
- python3 test/spec_tests.py --spec $< --dump-tests | python3 -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print("\n".join([test["markdown"] for test in tests]).encode("utf-8"))' > $@
+ python3 test/spec_tests.py --spec $< --dump-tests | python3 -c 'import json; import sys; tests = json.loads(sys.stdin.read()); print("\n".join([test["markdown"] for test in tests]))' > $@
leakcheck: $(ALLTESTS)
cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) >/dev/null