cmark

My personal build of CMark ✏️

Commit
d12c040d58d70555cc98e397e05ab0d8326b6aca
Parent
645bcf6a39a534ae2e8840e73196b24c9f24c145
Author
John MacFarlane <jgm@berkeley.edu>
Date

Improved 'make leakcheck'.

* We now return an error status if anything in the loop fails. * We now check --smart and --normalize options.

Diffstat

1 file changed, 7 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified Makefile 9 7 2
diff --git a/Makefile b/Makefile
@@ -125,9 +125,14 @@ $(ALLTESTS): $(SPEC)
 	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)
+	rc=0; \
 	for format in html man xml commonmark; do \
-	  cat $< | valgrind --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t $$format >/dev/null; \
-	done
+	  for opts in "" "--smart" "--normalize"; do \
+	     echo "cmark -t $$format $$opts" ; \
+	     cat $< | valgrind -q --leak-check=full --dsymutil=yes --error-exitcode=1 $(PROG) -t $$format $$opts >/dev/null || rc=1; \
+          done; \
+	done; \
+	exit $$rc
 
 fuzztest:
 	{ for i in `seq 1 10`; do \