Cmate tests: Add citenegine-modules to tests

This commit is contained in:
Kornel Benko 2019-04-26 16:55:30 +02:00
parent 2731c5dc55
commit 4e7cbe8b34

View File

@ -29,21 +29,27 @@ set_target_properties(check_layout PROPERTIES FOLDER "tests/src")
file(GLOB layout_files RELATIVE "${TOP_SRC_DIR}/lib/layouts" "${TOP_SRC_DIR}/lib/layouts/*.layout")
file(GLOB module_files RELATIVE "${TOP_SRC_DIR}/lib/layouts" "${TOP_SRC_DIR}/lib/layouts/*.module")
file(GLOB citeengine_files RELATIVE "${TOP_SRC_DIR}/lib/citeengines" "${TOP_SRC_DIR}/lib/citeengines/*.citeengine")
list(SORT layout_files)
list(SORT module_files)
list(SORT citeengine_files)
foreach(bns ${layout_files} ${module_files})
string(REGEX REPLACE "\\.(layout|module)" "" bn ${bns})
foreach(bns ${layout_files} ${module_files} ${citeengine_files})
string(REGEX REPLACE "\\.(layout|module|citeengine)" "" bn ${bns})
set(_checktype ${CMAKE_MATCH_1})
if("${_checktype}" STREQUAL "module")
if("${_checktype}" MATCHES "module|citeengine")
file(WRITE "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "#% Do not delete the line below; configure depends on this\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "# \\DeclareLaTeXClass{test${bn}}\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "Format 63\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "Format 74\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "Style Standard\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" " LabelType No_Label\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" " Category MainText\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "End\n")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "Input ${bns}\n")
if ("${_checktype}" STREQUAL "citeengine")
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "Input \"${TOP_SRC_DIR}/lib/citeengines/${bns}\"\n")
else()
file(APPEND "${LYX_TESTS_USERDIR}/layouts/test${bn}.layout" "Input ${bns}\n")
endif()
add_test(NAME "check_layout/${bns}"
COMMAND ${CMAKE_COMMAND}
"-DCheckLayout=$<TARGET_FILE:check_layout>"