From 0a4bb51a26ede588d5b29da8f71ba72bb74ae76c Mon Sep 17 00:00:00 2001 From: Scott Kostyshak Date: Wed, 27 Nov 2013 07:57:10 -0500 Subject: [PATCH] ctests: add dviluatex as a format that needs fonts Documents in certain languages will only work with dviluatex if fonts that support those languages are used. This commit continues e690cfc4. --- development/autotests/CMakeLists.txt | 2 +- development/autotests/export.cmake | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/development/autotests/CMakeLists.txt b/development/autotests/CMakeLists.txt index f27b1f9c4a..43e1a634df 100644 --- a/development/autotests/CMakeLists.txt +++ b/development/autotests/CMakeLists.txt @@ -107,7 +107,7 @@ macro(getoutputformats filepath varname) file(STRINGS "${filepath}" lines) set(out_formats "xhtml" "dvi" "dvi3" "pdf" "pdf2" "pdf3" "pdf4" "pdf5") if(NOT PERL_FOUND) - list(REMOVE_ITEM out_formats "pdf4" "pdf5") + list(REMOVE_ITEM out_formats "dvi3" "pdf4" "pdf5") endif() set(${varname} ${out_formats}) foreach(_l ${lines}) diff --git a/development/autotests/export.cmake b/development/autotests/export.cmake index 80ceed93ca..90d1a66630 100755 --- a/development/autotests/export.cmake +++ b/development/autotests/export.cmake @@ -27,7 +27,7 @@ # set(Perl_Script "${TOP_SRC_DIR}/development/autotests/useSystemFonts.pl") -if(format MATCHES "pdf4|pdf5") +if(format MATCHES "dvi3|pdf4|pdf5") message(STATUS "LYX_TESTS_USERDIR = ${LYX_TESTS_USERDIR}") message(STATUS "Converting with perl ${Perl_Script}") set(LYX_SOURCE "${WORKDIR}/${file}_${format}.lyx") -- 2.39.5