[cig-commits] r13153 - in cs/cigma/trunk: . tests

luis at geodynamics.org luis at geodynamics.org
Wed Oct 29 15:11:00 PDT 2008


Author: luis
Date: 2008-10-29 15:11:00 -0700 (Wed, 29 Oct 2008)
New Revision: 13153

Modified:
   cs/cigma/trunk/Makefile.am
   cs/cigma/trunk/tests/test_registry.cpp
Log:
Incorporate QuadratureTest and DofHandlerTest into build

Modified: cs/cigma/trunk/Makefile.am
===================================================================
--- cs/cigma/trunk/Makefile.am	2008-10-29 22:10:59 UTC (rev 13152)
+++ cs/cigma/trunk/Makefile.am	2008-10-29 22:11:00 UTC (rev 13153)
@@ -116,14 +116,16 @@
 	src/fe_tri3.cpp \
 	src/Quadrature.h \
 	src/Quadrature.cpp \
-	src/MeshPart.h \
-	src/MeshPart.cpp \
 	src/ElementBlock.h \
 	src/ElementBlock.cpp \
 	src/NodeCoordinates.h \
 	src/NodeCoordinates.cpp \
 	src/nc_array.h \
 	src/nc_array.cpp \
+	src/MeshPart.h \
+	src/MeshPart.cpp \
+	src/DofHandler.h \
+	src/DofHandler.cpp \
 	src/Function.h \
 	src/Function.cpp \
 	src/io_file_reader.h \
@@ -275,10 +277,14 @@
 	tests/libcigma/PointsTest.cpp \
 	tests/libcigma/CellTest.h \
 	tests/libcigma/CellTest.cpp \
+	tests/libcigma/QuadratureTest.h \
+	tests/libcigma/QuadratureTest.cpp \
 	tests/libcigma/NodeCoordinatesTest.h \
 	tests/libcigma/NodeCoordinatesTest.cpp \
 	tests/libcigma/ElementBlockTest.h \
 	tests/libcigma/ElementBlockTest.cpp \
+	tests/libcigma/DofHandlerTest.h \
+	tests/libcigma/DofHandlerTest.cpp \
 	tests/libcigma/FunctionTest.h \
 	tests/libcigma/FunctionTest.cpp \
 	tests/libcigma/ReaderTest.h \

Modified: cs/cigma/trunk/tests/test_registry.cpp
===================================================================
--- cs/cigma/trunk/tests/test_registry.cpp	2008-10-29 22:10:59 UTC (rev 13152)
+++ cs/cigma/trunk/tests/test_registry.cpp	2008-10-29 22:11:00 UTC (rev 13153)
@@ -15,12 +15,18 @@
 #include <libcigma/CellTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION(libcigma::CellTest);
 
+#include <libcigma/QuadratureTest.h>
+CPPUNIT_TEST_SUITE_REGISTRATION(libcigma::QuadratureTest);
+
 #include <libcigma/NodeCoordinatesTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION(libcigma::NodeCoordinatesTest);
 
 #include <libcigma/ElementBlockTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION(libcigma::ElementBlockTest);
 
+#include <libcigma/DofHandlerTest.h>
+CPPUNIT_TEST_SUITE_REGISTRATION(libcigma::DofHandlerTest);
+
 #include <libcigma/FunctionTest.h>
 CPPUNIT_TEST_SUITE_REGISTRATION(libcigma::FunctionTest);
 



More information about the CIG-COMMITS mailing list