]> git.lyx.org Git - lyx.git/blob - development/autotests/check_load.cmake
e4872009ba36b2b095db656aa846dacf34f9e774
[lyx.git] / development / autotests / check_load.cmake
1 # This file is part of LyX, the document processor.
2 # Licence details can be found in the file COPYING.
3 #
4 # Copyright (c) 2013 Kornel Benko kornel@lyx.org
5 # Copyright (c) 2013 Scott Kostyshak skotysh@lyx.org
6 #
7 #
8 # LYXFILE  = xxx
9 # lyx      =
10 #
11 # Script should be called like:
12 # cmake -DWORKDIR=${BUILD_DIR}/autotests/out-home \
13 #       -DLYX_TESTS_USERDIR=${LYX_TESTS_USERDIR} \
14 #       -DLYXFILE=xxx \
15 #       -DLYX_USERDIR_VER=${LYX_USERDIR_VER} \
16 #       -DPARAMS_DIR="${TOP_SRC_DIR}/development/autotests" \
17 #       -P "${TOP_SRC_DIR}/development/autotests/check_load.cmake"
18 #
19
20 message(STATUS "Executing ${lyx} -batch -userdir \"${LYX_TESTS_USERDIR}\" ${LYXFILE}")
21 set(ENV{${LYX_USERDIR_VER}} "${LYX_TESTS_USERDIR}")
22 set(ENV{LANG} "en") # to get all error-messages in english
23
24 execute_process(
25   COMMAND ${lyx} -batch -userdir "${LYX_TESTS_USERDIR}" ${LYXFILE}
26   RESULT_VARIABLE _err
27   ERROR_VARIABLE lyxerr)
28
29 message(STATUS "Error code of lyx = ${_err}")
30 string(COMPARE NOTEQUAL  ${_err} 0 _erg)
31
32 #
33 # Ignore messages between "reconfiguring user directory" and "LyX: Done!"
34 # (Reconfigure-messages are not symptom of an error)
35 include(${PARAMS_DIR}/CheckLoadErrors.cmake)
36 CheckLoadErrors(lyxerr "${PARAMS_DIR}" _erg)
37
38 if(_erg)
39   # We print here the whole error output, even the ignored part
40   message(FATAL_ERROR "lyx gave warnings/errors:\n${lyxerr}")
41 endif()