diff options
author | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 07:51:06 -0800 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2014-11-12 07:51:06 -0800 |
commit | c95bf40de24300bcb7a115a2f6ae7a978b7d21ad (patch) | |
tree | 4437d8d5f867192d6bfdd14d14a115978ec5f2e8 /README.md | |
parent | 9178ce81c2521bae2bc3a3b2a690d6c192f9e952 (diff) |
Documented more Makefile targets.
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 19 |
1 files changed, 15 insertions, 4 deletions
@@ -79,13 +79,24 @@ To run tests: make test -or: +(Or `perl runtests.pl spec.txt build/src/cmark` or, in the cmake +build directory, `ctest -V`.) - perl runtests.pl spec.txt build/src/cmark +To test the shared library via a python wrapper: -or (in the cmake build directory): + make testlib - ctest -V +To run a "fuzz test" against ten long randomly generated inputs: + + make fuzztest + +To run a test for memory leaks using valgrind: + + make leakcheck + +To make a release tarball: + + make tarball Installing (JavaScript) ----------------------- |