From: Kornel Benko Date: Sun, 25 Aug 2013 09:45:26 +0000 (+0200) Subject: Cmake build tests: Unify use of userdir X-Git-Tag: 2.1.0beta2~133 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=e6f2598323160dd71f9aac4fe5da76d8d6ac12f8;p=features.git Cmake build tests: Unify use of userdir Forgotten in commit 788e2b1ac8ae98c47a6551ecd70d6bfe0491294d --- diff --git a/src/tex2lyx/test/CMakeLists.txt b/src/tex2lyx/test/CMakeLists.txt index 13bba2d5ee..c0ba51deff 100644 --- a/src/tex2lyx/test/CMakeLists.txt +++ b/src/tex2lyx/test/CMakeLists.txt @@ -25,18 +25,29 @@ foreach(_fl ${_tex_tests}) set(fl ${_fl}) add_test(NAME tex2lyx/roundtrip/${_fl} WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" - COMMAND ${LYX_PYTHON_EXECUTABLE} "${TOP_SRC_DIR}/src/tex2lyx/test/runtests.py" - "$" - "${TOP_SRC_DIR}/lib/scripts" - "${CMAKE_CURRENT_BINARY_DIR}" - ${fl}) + COMMAND ${CMAKE_COMMAND} + -DLYX_TESTS_USERDIR=${LYX_TESTS_USERDIR} + -DLYX_USERDIR_VER=${LYX_USERDIR_VER} + -DLYX_PYTHON_EXECUTABLE=${LYX_PYTHON_EXECUTABLE} + -DPY_SCRIPT=${TOP_SRC_DIR}/src/tex2lyx/test/runtests.py + -DTEX2LYX_EXE=$ + -DSCRIPT_DIR=${TOP_SRC_DIR}/lib/scripts + -DWORKDIR=${CMAKE_CURRENT_BINARY_DIR} + -DTESTFILE=${fl} + -P ${TOP_SRC_DIR}/src/tex2lyx/test/runtests.cmake) add_test(NAME tex2lyx/cmplyx/${_fl} WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}" - COMMAND ${LYX_PYTHON_EXECUTABLE} "${TOP_SRC_DIR}/src/tex2lyx/test/runtests.py" "uselyx2lyx" - "$" - "${TOP_SRC_DIR}/lib/scripts" - "${CMAKE_CURRENT_BINARY_DIR}" - ${fl}) + COMMAND ${CMAKE_COMMAND} + -DLYX_TESTS_USERDIR=${LYX_TESTS_USERDIR} + -DLYX_USERDIR_VER=${LYX_USERDIR_VER} + -DLYX_PYTHON_EXECUTABLE=${LYX_PYTHON_EXECUTABLE} + -DPY_SCRIPT=${TOP_SRC_DIR}/src/tex2lyx/test/runtests.py + -DFIRST_PARAM=uselyx2lyx + -DTEX2LYX_EXE=$ + -DSCRIPT_DIR=${TOP_SRC_DIR}/lib/scripts + -DWORKDIR=${CMAKE_CURRENT_BINARY_DIR} + -DTESTFILE=${fl} + -P ${TOP_SRC_DIR}/src/tex2lyx/test/runtests.cmake) endforeach() add_dependencies(lyx_run_tests ${_tex2lyx} ${_lyx})