X-Git-Url: https://git.lyx.org/gitweb/?a=blobdiff_plain;ds=sidebyside;f=src%2Ftests%2FCMakeLists.txt;h=8b0c6d5180669d2ae32ea2f18b87d43c103a35bc;hb=28be7d552f62cc02fa86d7f79201d089bfb2d7b5;hp=5ba9f3d0d5a21b05fe18f609972d1fc66c0c59a5;hpb=ebddec15de6c4c807c18f6dac2b4f0cc94c3b642;p=lyx.git diff --git a/src/tests/CMakeLists.txt b/src/tests/CMakeLists.txt index 5ba9f3d0d5..8b0c6d5180 100644 --- a/src/tests/CMakeLists.txt +++ b/src/tests/CMakeLists.txt @@ -4,25 +4,125 @@ # Copyright (c) 2013 Kornel Benko kornel@lyx.org # -set(check_Layout_SOURCES) -foreach(_f insets/InsetLayout.cpp Color.cpp Counters.cpp Floating.cpp +set(check_layout_SOURCES) +foreach(_f insets/InsetLayout.cpp CiteEnginesList.cpp Color.cpp Counters.cpp Floating.cpp FloatList.cpp FontInfo.cpp Layout.cpp LayoutFile.cpp Lexer.cpp - ModuleList.cpp Spacing.cpp TextClass.cpp tests/check_Layout.cpp - support/tests/boost.cpp support/tests/dummy_functions.cpp) - list(APPEND check_Layout_SOURCES "${TOP_SRC_DIR}/src/${_f}") + ModuleList.cpp Spacing.cpp TextClass.cpp tests/check_layout.cpp + tests/boost.cpp support/tests/dummy_functions.cpp) + list(APPEND check_layout_SOURCES "${TOP_SRC_DIR}/src/${_f}") endforeach() -add_definitions(-DNO_LAYOUT_CSS) -add_executable(check_Layout ${check_Layout_SOURCES}) -set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -Wl,--allow-multiple-definition") -target_link_libraries(check_Layout support ${QT_QTMAIN_LIBRARY}) -add_dependencies(lyx_run_tests check_Layout) +include_directories(${TOP_SRC_DIR}/src/support/tests) + +add_executable(check_layout ${check_layout_SOURCES}) + +target_link_libraries(check_layout support + ${Lyx_Boost_Libraries} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY} + ${ZLIB_LIBRARY} ${ICONV_LIBRARY}) +if(CYGWIN) + target_link_libraries(check_layout shlwapi) +endif() +lyx_target_link_libraries(check_layout Magic) + +add_dependencies(lyx_run_tests check_layout) +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") list(SORT layout_files) -foreach(bns ${layout_files}) - string(REPLACE ".layout" "" bn ${bns}) +list(SORT module_files) + +foreach(bns ${layout_files} ${module_files}) + string(REGEX REPLACE "\\.(layout|module)" "" bn ${bns}) + set(_checktype ${CMAKE_MATCH_1}) + if("${_checktype}" STREQUAL "module") + 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" "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") + add_test(NAME "check_layout/${bns}" + COMMAND ${CMAKE_COMMAND} + "-DCheckLayout=$" + "-DModule=${LYX_TESTS_USERDIR}/layouts/test${bn}" + "-DOutput=${CMAKE_CURRENT_BINARY_DIR}/${bn}.out${_checktype}" + -P "${TOP_SRC_DIR}/src/tests/check_layout.cmake") + set_tests_properties("check_layout/${bns}" PROPERTIES ENVIRONMENT ${LYX_USERDIR_VER}=${LYX_TESTS_USERDIR}) + else() + add_test(NAME "check_layout/${bns}" + COMMAND check_layout "${TOP_SRC_DIR}/lib/layouts/${bn}" "${CMAKE_CURRENT_BINARY_DIR}/${bn}.out${_checktype}") + endif() + settestlabel("check_layout/${bns}" "${_checktype}") +endforeach() + +set(check_ExternalTransforms_SOURCES) +foreach(_f graphics/GraphicsParams.cpp insets/ExternalTransforms.cpp + Length.cpp lengthcommon.cpp tests/check_ExternalTransforms.cpp + tests/boost.cpp support/tests/dummy_functions.cpp) + list(APPEND check_ExternalTransforms_SOURCES ${TOP_SRC_DIR}/src/${_f}) +endforeach() + +include_directories(${TOP_SRC_DIR}/src/tests) +add_executable(check_ExternalTransforms ${check_ExternalTransforms_SOURCES}) + +target_link_libraries(check_ExternalTransforms support + ${Lyx_Boost_Libraries} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}) +lyx_target_link_libraries(check_ExternalTransforms Magic) + +add_dependencies(lyx_run_tests check_ExternalTransforms) +set_target_properties(check_ExternalTransforms PROPERTIES FOLDER "tests/src") +target_link_libraries(check_ExternalTransforms ${ICONV_LIBRARY}) - add_test(NAME "check_Layout/${bns}" - COMMAND check_Layout "${TOP_SRC_DIR}/lib/layouts/${bn}") +add_test(NAME "check_ExternalTransforms" + COMMAND ${CMAKE_COMMAND} -DCommand=$ + "-DInput=${TOP_SRC_DIR}/src/tests/regfiles/ExternalTransforms" + "-DOutput=${CMAKE_CURRENT_BINARY_DIR}/ExternalTransforms_data" + -P "${TOP_SRC_DIR}/src/support/tests/supporttest.cmake") +add_dependencies(lyx_run_tests check_ExternalTransforms) + +set(check_Length_SOURCES) +foreach(_f Length.cpp lengthcommon.cpp tests/check_Length.cpp tests/boost.cpp support/tests/dummy_functions.cpp) + list(APPEND check_Length_SOURCES ${TOP_SRC_DIR}/src/${_f}) +endforeach() +add_executable(check_Length ${check_Length_SOURCES}) + +target_link_libraries(check_Length support + ${Lyx_Boost_Libraries} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}) +lyx_target_link_libraries(check_Length Magic) + +add_dependencies(lyx_run_tests check_Length) +set_target_properties(check_Length PROPERTIES FOLDER "tests/src") +target_link_libraries(check_Length ${ICONV_LIBRARY}) + +add_test(NAME "check_Length" + COMMAND ${CMAKE_COMMAND} -DCommand=$ + "-DInput=${TOP_SRC_DIR}/src/tests/regfiles/Length" + "-DOutput=${CMAKE_CURRENT_BINARY_DIR}/Length_data" + -P "${TOP_SRC_DIR}/src/support/tests/supporttest.cmake") +add_dependencies(lyx_run_tests check_Length) + +include_directories(${TOP_SRC_DIR}/src/tests) +set(check_ListingsCaption_SOURCES) +foreach(_f tests/check_ListingsCaption.cpp tests/boost.cpp support/tests/dummy_functions.cpp) + list(APPEND check_ListingsCaption_SOURCES ${TOP_SRC_DIR}/src/${_f}) endforeach() +add_executable(check_ListingsCaption ${check_ListingsCaption_SOURCES}) + +target_link_libraries(check_ListingsCaption support + ${Lyx_Boost_Libraries} ${QT_QTGUI_LIBRARY} ${QT_QTCORE_LIBRARY}) +lyx_target_link_libraries(check_ListingsCaption Magic) + +add_dependencies(lyx_run_tests check_ListingsCaption) +set_target_properties(check_ListingsCaption PROPERTIES FOLDER "tests/src") +target_link_libraries(check_ListingsCaption ${ICONV_LIBRARY}) + +add_test(NAME "check_ListingsCaption" + COMMAND ${CMAKE_COMMAND} -DCommand=$ + "-DInput=${TOP_SRC_DIR}/src/tests/regfiles/ListingsCaption" + "-DOutput=${CMAKE_CURRENT_BINARY_DIR}/ListingsCaption_data" + -P "${TOP_SRC_DIR}/src/support/tests/supporttest.cmake") +add_dependencies(lyx_run_tests check_ListingsCaption) +