]> git.lyx.org Git - lyx.git/blobdiff - development/batchtests/CMakeLists.txt
Update tests and documentation for supported languages.
[lyx.git] / development / batchtests / CMakeLists.txt
index 5d27601b884156f45634857d3eedb17630e417fd..7bf0aeaa9f4a4f4b8a697abbec7efc2162deb3dc 100644 (file)
@@ -1,3 +1,16 @@
 # 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
-add_test(NAME "outline-beamer" COMMAND ${PERL_EXECUTABLE} ${CMAKE_BINARY_DIR}/lyx_batch.pl beamer_test)
+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")
+# Checking that info inset correctly fills up VCS information
+# see also bug #10835
+add_batch_test(vcs-info vcs_info_export)
+add_batch_test(AMS-import ams-import "tex2lyx")
+