]> git.lyx.org Git - features.git/commitdiff
Remove MergedManuals.lyx from export tests
authorKornel Benko <kornel@lyx.org>
Fri, 1 Mar 2013 16:13:29 +0000 (17:13 +0100)
committerKornel Benko <kornel@lyx.org>
Fri, 1 Mar 2013 16:13:29 +0000 (17:13 +0100)
development/autotests/CMakeLists.txt

index d8683334450fac781ee7096efbe410b96b029ab9..e1f3c2548abbb625111797f687b523e84fe3eae9 100644 (file)
@@ -78,27 +78,31 @@ foreach(libsubfolder doc examples templates)
     endif()
   endforeach()
   foreach(f ${nolang_lyx_files} ${lang_lyx_files})
-    # Strip extension
-    string(REGEX REPLACE "\\.lyx$" "" f ${f})
-    add_test(NAME export/${libsubfolder}/${f}_lyx16
-      WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${LYX_HOME}"
-      COMMAND ${CMAKE_COMMAND} -DLYX_ROOT=${LIBSUB_SRC_DIR}
-          -Dlyx=$<TARGET_FILE:${_lyx}>
-          -Dformat=lyx16x
-          -Dextension=16.lyx
-          -Dfile=${f}
-          -P "${TOP_SRC_DIR}/development/autotests/export.cmake")
-    getdefaultoutputformat("${LIBSUB_SRC_DIR}/${f}.lyx" formatlist)
-    foreach(format "xhtml" ${formatlist})
-      add_test(NAME export/${libsubfolder}/${f}_${format}
+    if(f MATCHES "MergedManuals")
+      # we do not test (for now) the uncompilable file MergedManuals.lyx
+    else()
+      # Strip extension
+      string(REGEX REPLACE "\\.lyx$" "" f ${f})
+      add_test(NAME export/${libsubfolder}/${f}_lyx16
         WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${LYX_HOME}"
         COMMAND ${CMAKE_COMMAND} -DLYX_ROOT=${LIBSUB_SRC_DIR}
             -Dlyx=$<TARGET_FILE:${_lyx}>
-            -Dformat=${format}
-            -Dextension=${format}
+            -Dformat=lyx16x
+            -Dextension=16.lyx
             -Dfile=${f}
             -P "${TOP_SRC_DIR}/development/autotests/export.cmake")
-    endforeach()
+      getdefaultoutputformat("${LIBSUB_SRC_DIR}/${f}.lyx" formatlist)
+      foreach(format "xhtml" ${formatlist})
+        add_test(NAME export/${libsubfolder}/${f}_${format}
+          WORKING_DIRECTORY "${CMAKE_CURRENT_BINARY_DIR}/${LYX_HOME}"
+          COMMAND ${CMAKE_COMMAND} -DLYX_ROOT=${LIBSUB_SRC_DIR}
+              -Dlyx=$<TARGET_FILE:${_lyx}>
+              -Dformat=${format}
+              -Dextension=${format}
+              -Dfile=${f}
+              -P "${TOP_SRC_DIR}/development/autotests/export.cmake")
+      endforeach()
+    endif()
   endforeach()
 endforeach()