summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2015-08-05 17:03:50 +0200
committerDavid Tardon <dtardon@redhat.com>2015-08-05 17:07:33 +0200
commit7128ea06e51c712a549d95237093b836eee4db8f (patch)
tree45ab35db52df211f83a4875a2307c78993965631
parent3a97bddcfb4a6d8cbd1899acad18d34f46e274ea (diff)
only run the char bg. color test with new libxml2
Change-Id: I74e342d5e1d79f1f5a162d5a0d5bb659cf7c49da
-rw-r--r--configure.ac4
-rw-r--r--src/test/importtest.cpp2
2 files changed, 2 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index a075e73..1611dcb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -128,10 +128,6 @@ AS_IF([test "x$enable_tools" = "xyes"], [
PKG_CHECK_MODULES([REVENGE_STREAM],[
librevenge-stream-0.0
])
- PKG_CHECK_EXISTS([libxml-2.0 >= 2.9.2],
- [],
- [AC_MSG_ERROR([libxml2 >= 2.9.2 is needed to run tests])]
- )
])
AC_SUBST([REVENGE_GENERATORS_CFLAGS])
AC_SUBST([REVENGE_GENERATORS_LIBS])
diff --git a/src/test/importtest.cpp b/src/test/importtest.cpp
index 0296380..82d27f0 100644
--- a/src/test/importtest.cpp
+++ b/src/test/importtest.cpp
@@ -156,7 +156,9 @@ class ImportTest : public CPPUNIT_NS::TestFixture
CPPUNIT_TEST(testVsdUserDefinedMetadata);
CPPUNIT_TEST(testVsdxUserDefinedMetadata);
CPPUNIT_TEST(testVsdxImportBgColorFromTheme);
+#if LIBXML_VERSION >= 20902
CPPUNIT_TEST(testVsdxCharBgColor);
+#endif
CPPUNIT_TEST_SUITE_END();
void testVsdxMetadataTitle();