cmark

My personal build of CMark ✏️

Commit
be020e1928f2d0750573730483dd4cb40140935a
Parent
41f1e5aaea98011ce650a59a765549fff5f4468a
Author
John MacFarlane <jgm@berkeley.edu>
Date

Fixed round trip tests.

Previously they actually ran cmark instead of the round-trip version, since there was a bug in setting the ROUNDTRIP variable.

Now round trip tests fail! This was unnoticed before.

See #131.

Diffstat

1 file changed, 2 insertions, 2 deletions

Status File Name N° Changes Insertions Deletions
Modified test/CMakeLists.txt 4 2 2
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
@@ -16,9 +16,9 @@ if (WIN32)
   set(NEWPATH "${WIN_DLL_DIR};$ENV{PATH}")
   string(REPLACE ";" "\\;" NEWPATH "${NEWPATH}")
   set_tests_properties(api_test PROPERTIES ENVIRONMENT "PATH=${NEWPATH}")
-  set(ROUNDTRIP,"${CMAKE_CURRENT_SOURCE_DIR}/roundtrip.bat")
+  set(ROUNDTRIP "${CMAKE_CURRENT_SOURCE_DIR}/roundtrip.bat")
 else(WIN32)
-  set(ROUNDTRIP,"${CMAKE_CURRENT_SOURCE_DIR}/roundtrip.sh")
+  set(ROUNDTRIP "${CMAKE_CURRENT_SOURCE_DIR}/roundtrip.sh")
 endif(WIN32)
 
 IF (PYTHONINTERP_FOUND)