From fd64040a652a4d360d8756f548d324dcddfae5b8 Mon Sep 17 00:00:00 2001 From: Jez Higgins Date: Thu, 9 Dec 2010 14:50:38 +0000 Subject: [PATCH] Include DOM conformance tests in dist package --- Makefile.am | 1 + tests/DOM/Makefile.am | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index a7260bd4..dcd8c3f5 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,6 +8,7 @@ EXTRA_DIST=vs7 \ vs9 \ vs10 \ doc \ + tests/DOM/conformance \ tests/XSLT/testsuite \ src/SAX/wrappers/saxexpat.cpp \ src/SAX/wrappers/saxlibxml2.cpp \ diff --git a/tests/DOM/Makefile.am b/tests/DOM/Makefile.am index 56f46a0a..7f5fb8f7 100644 --- a/tests/DOM/Makefile.am +++ b/tests/DOM/Makefile.am @@ -14,6 +14,7 @@ LIBSILLY = ../CppUnit/libsillystring.la TESTLIBS = $(LIBARABICA) ../CppUnit/libcppunit.la test_sources = dom_test_suite.hpp \ + dom_conf_test.hpp \ test_Attribute.hpp \ test_CDATA.hpp \ test_CharacterData.hpp \ @@ -31,7 +32,7 @@ test_sources = dom_test_suite.hpp \ test_Stream.hpp dom_test_SOURCES = main.cpp \ - $(test_sources) + $(test_sources) dom_test_LDADD = $(TESTLIBS) dom_test_DEPENDENCIES = $(TESTLIBS)