]> git.lyx.org Git - features.git/commitdiff
Cmate tests: Add citenegine-modules to tests
authorKornel Benko <kornel@lyx.org>
Fri, 26 Apr 2019 14:55:30 +0000 (16:55 +0200)
committerJean-Marc Lasgouttes <lasgouttes@lyx.org>
Thu, 18 Jun 2020 13:48:27 +0000 (15:48 +0200)
src/tests/CMakeLists.txt

index 84e934640c0e56f897f75640439f476c6f39bad0..df83d0441be4eea3fdbca7f7d7ef1ddb38c7177f 100644 (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>"