mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-17 10:07:27 +00:00
9f7c8be6d7
To please Georg: 1.) Do _not_ use globbing to get test file 2.) Do not evaluate stderr output of tex2lyx
29 lines
876 B
CMake
29 lines
876 B
CMake
# This file is part of LyX, the document processor.
|
|
# Licence details can be found in the file COPYING.
|
|
#
|
|
# Copyright (c) 2012 Kornel Benko, <kornel@lyx.org>
|
|
#
|
|
|
|
project(test)
|
|
|
|
#file(GLOB _tex_tests RELATIVE "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_CURRENT_SOURCE_DIR}/*.ltx" "${CMAKE_CURRENT_SOURCE_DIR}/*.tex")
|
|
#
|
|
#list(REMOVE_ITEM _tex_tests DummyDocument.tex)
|
|
|
|
set(_tex_tests test.ltx test-structure.tex test-insets.tex
|
|
test-modules.tex box-color-size-space-align.tex
|
|
CJK.tex XeTeX-polyglossia.tex)
|
|
|
|
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"
|
|
"$<TARGET_FILE:${_tex2lyx}>"
|
|
"${TOP_SRC_DIR}/lib/scripts"
|
|
"${CMAKE_CURRENT_BINARY_DIR}"
|
|
${fl})
|
|
endforeach()
|
|
|
|
|