summaryrefslogtreecommitdiff
path: root/test/cmark.py
AgeCommit message (Collapse)Author
2016-06-06Fix ctypes in Python FFI callsNick Wellnhofer
This didn't cause problems so far because - all types are 32-bit on 32-bit systems and - arguments are passed in registers on x86-64. The wrong types could cause crashes on other platforms, though.
2016-06-02cmark.py: added to_commonmark (for round-trip tests).John MacFarlane
2016-05-17Fix tests under MinGWNick Wellnhofer
- Fix PATH for api_test, see: https://cmake.org/pipermail/cmake/2009-May/029423.html - DLL is named libcmark.dll under MinGW.
2015-04-26Use os.path.join in test/cmark.py.John MacFarlane
For proper cross-platform paths.
2015-03-21test/cmark.py: set default options for markdown_to_html.John MacFarlane
2014-12-31Fix spec tests on WindowsNick Wellnhofer
2014-12-29Updated tests to use python3.John MacFarlane
2014-11-29Factored out cmark.py from test programs.John MacFarlane