diff options
| author | Kevin Wojniak <kainjow@kainjow.com> | 2015-08-10 08:56:11 -0700 | 
|---|---|---|
| committer | Kevin Wojniak <kainjow@kainjow.com> | 2015-08-10 08:56:11 -0700 | 
| commit | bb9f8086d4873defc0adee3e6b05327e41a3d885 (patch) | |
| tree | c2a909d2f534c5654d3b7ee3482e52ba155c5c9c /test | |
| parent | 50114ff73006e97bc60761191dfd0ac8024aea73 (diff) | |
Fix FileNotFoundError errors on tests when cmark is built from another project via add_subdirectory()
CMAKE_SOURCE_DIR will refer to the top-level source directory, not cmark, so CMAKE_CURRENT_SOURCE_DIR must be used. Also the same for CMAKE_BINARY_DIR. Ideally it should be using the TARGET_FILE CMake generator to get a target's location instead of hard coding the path, but that requires CMake 3.0 or greater.
Diffstat (limited to 'test')
| -rwxr-xr-x[-rw-r--r--] | test/CMakeLists.txt | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index 6d752ca..164fba1 100644..100755 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -27,20 +27,20 @@ IF (PYTHONINTERP_FOUND)    add_test(spectest_library      ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" -    "${CMAKE_SOURCE_DIR}/test/spec.txt" "--library-dir" "${CMAKE_BINARY_DIR}/src" +    "${CMAKE_CURRENT_SOURCE_DIR}/spec.txt" "--library-dir" "${CMAKE_CURRENT_BINARY_DIR}/../src"      )    add_test(pathological_tests_library      ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/pathological_tests.py" -    "--library-dir" "${CMAKE_BINARY_DIR}/src" +    "--library-dir" "${CMAKE_CURRENT_BINARY_DIR}/../src"      )    add_test(spectest_executable -    ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/test/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark" +    ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_CURRENT_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_CURRENT_BINARY_DIR}/../src/cmark"      )    add_test(smartpuncttest_executable -    ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/test/smart_punct.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark --smart" +    ${PYTHON_EXECUTABLE} "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_CURRENT_SOURCE_DIR}/smart_punct.txt" "--program" "${CMAKE_CURRENT_BINARY_DIR}/../src/cmark --smart"      )  ELSE(PYTHONINTERP_FOUND) | 
