diff options
author | John MacFarlane <jgm@berkeley.edu> | 2016-06-01 14:24:19 -0700 |
---|---|---|
committer | John MacFarlane <jgm@berkeley.edu> | 2016-06-01 14:26:23 -0700 |
commit | be020e1928f2d0750573730483dd4cb40140935a (patch) | |
tree | 55fe8d08f01f60cfbd5c4c3fdf4519c678400080 /test | |
parent | 41f1e5aaea98011ce650a59a765549fff5f4468a (diff) |
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 (limited to 'test')
-rwxr-xr-x | test/CMakeLists.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 211bf69..09af8a4 100755 --- 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) |