We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70d156a commit 84d1307Copy full SHA for 84d1307
tests/python/CMakeLists.txt
@@ -26,7 +26,7 @@ make_directory(${CMAKE_CURRENT_BINARY_DIR})
26
foreach(pyfile ${PYTHON_TESTS})
27
get_filename_component(test_name ${pyfile} NAME_WE)
28
string(REGEX REPLACE "^test_" "${PROJECT_NAME}-test-py-" test_name ${test_name})
29
- string(REGEX REPLACE "_" "-" test_name ${test_name})
+ string(REPLACE "_" "-" test_name ${test_name})
30
execute_process(
31
COMMAND ${CMAKE_COMMAND} -E create_symlink ${CMAKE_CURRENT_SOURCE_DIR}/${pyfile}
32
${CMAKE_CURRENT_BINARY_DIR}/${pyfile}
0 commit comments