2018-01-14 13:56:11 +00:00
|
|
|
# Checking whether moving beamer slides through the document doesn't break its structure.
|
|
|
|
# see also https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg203281.html
|
2018-07-07 09:25:36 +00:00
|
|
|
set(testlabel "batch")
|
|
|
|
string(TOUPPER "${testlabel}_" testprefix)
|
|
|
|
|
|
|
|
macro(add_batch_test testname testpar)
|
|
|
|
add_test(NAME "${testprefix}${testname}" COMMAND ${PERL_EXECUTABLE} ${CMAKE_BINARY_DIR}/lyx_batch.pl ${testpar})
|
|
|
|
setmarkedtestlabel(${testprefix}${testname} ${ARGN} "${testlabel}")
|
|
|
|
endmacro()
|
|
|
|
|
|
|
|
add_batch_test(outline-beamer beamer_test "export")
|
2018-01-17 11:28:18 +00:00
|
|
|
# Checking that info inset correctly fills up VCS information
|
|
|
|
# see also bug #10835
|
2018-07-07 09:25:36 +00:00
|
|
|
add_batch_test(vcs-info vcs_info_export)
|
|
|
|
add_batch_test(AMS-import ams-import "tex2lyx")
|
2019-05-27 08:21:15 +00:00
|
|
|
add_batch_test(SAVE-as save_as_test "export")
|
2020-11-13 07:58:20 +00:00
|
|
|
add_batch_test(compare-test compare_test "compare_test")
|
2018-07-07 09:25:36 +00:00
|
|
|
|