diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-12-31 16:22:35 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-12-31 16:52:50 +0100 |
commit | 858d7982fba21ff087c8fb75f310670e3723f2ae (patch) | |
tree | 8cba04c3113d065da3c7f03c1cec0415aa0f3645 /test | |
parent | 7081a8ec915762b71b9007ab6246e9914f34552f (diff) |
Fix API test on Windows
set_tests_properties must not be called before adding the test.
Diffstat (limited to 'test')
-rw-r--r-- | test/CMakeLists.txt | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt index f08b325..3d90b38 100644 --- a/test/CMakeLists.txt +++ b/test/CMakeLists.txt @@ -3,13 +3,6 @@ find_package(PythonInterp 3 REQUIRED) set(PYTHON ${PYTHON_EXECUTABLE}) -if (WIN32) - file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR}/src WIN_DLL_DIR) - set_tests_properties(api_test PROPERTIES - ENVIRONMENT "PATH=${WIN_DLL_DIR};$ENV{PATH}" - ) -endif(WIN32) - add_test(html_normalization ${PYTHON} "-m" "doctest" "${CMAKE_CURRENT_SOURCE_DIR}/normalize.py" @@ -27,6 +20,13 @@ add_test(pathological_tests_library add_test(NAME api_test COMMAND api_test) +if (WIN32) + file(TO_NATIVE_PATH ${CMAKE_BINARY_DIR}/src WIN_DLL_DIR) + set_tests_properties(api_test PROPERTIES + ENVIRONMENT "PATH=${WIN_DLL_DIR};$ENV{PATH}" + ) +endif(WIN32) + add_test(spectest_executable ${PYTHON} "${CMAKE_CURRENT_SOURCE_DIR}/spec_tests.py" "--no-normalize" "--spec" "${CMAKE_SOURCE_DIR}/spec.txt" "--program" "${CMAKE_BINARY_DIR}/src/cmark" -)
\ No newline at end of file +) |