]> git.lyx.org Git - lyx.git/blob - development/batchtests/CMakeLists.txt
Back to development
[lyx.git] / development / batchtests / CMakeLists.txt
1 # Checking whether moving beamer slides through the document doesn't break its structure.
2 # see also https://www.mail-archive.com/lyx-devel@lists.lyx.org/msg203281.html
3 set(testlabel "batch")
4 string(TOUPPER "${testlabel}_" testprefix)
5
6 macro(add_batch_test testname testpar)
7   add_test(NAME "${testprefix}${testname}" COMMAND ${PERL_EXECUTABLE} ${CMAKE_BINARY_DIR}/lyx_batch.pl ${testpar})
8   setmarkedtestlabel(${testprefix}${testname} ${ARGN} "${testlabel}")
9 endmacro()
10
11 add_batch_test(outline-beamer beamer_test "export")
12 # Checking that info inset correctly fills up VCS information
13 # see also bug #10835
14 add_batch_test(vcs-info vcs_info_export)
15 add_batch_test(AMS-import ams-import "tex2lyx")
16 add_batch_test(SAVE-as save_as_test "export")
17 add_batch_test(compare-test compare_test "compare_test")
18