source: src/unittests/Makefile.am@ d7d022

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since d7d022 was d7d022, checked in by Frederik Heber <heber@…>, 13 years ago

Added serialization functionality to class element.

  • also added extensive unit test on class element.
  • we use boost::serialization.
  • Property mode set to 100644
File size: 6.3 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4check_PROGRAMS =
5noinst_PROGRAMS =
6TESTS =
7
8include ../../src/Actions/unittests/Makefile.am
9include ../../src/Descriptors/unittests/Makefile.am
10include ../../src/Parser/unittests/Makefile.am
11include ../../src/RandomNumbers/unittests/Makefile.am
12include ../../src/Shapes/unittests/Makefile.am
13include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
14include ../../src/UIElements/Menu/unittests/Makefile.am
15
16INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
17
18AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
19AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
20
21GENERALTESTS = \
22 AnalysisBondsUnitTest \
23 AnalysisCorrelationToPointUnitTest \
24 AnalysisCorrelationToSurfaceUnitTest \
25 AnalysisPairCorrelationUnitTest \
26 BondGraphUnitTest \
27 BoxUnitTest \
28 CountBondsUnitTest \
29 ElementUnitTest \
30 FormulaUnittest \
31 LinkedCellUnitTest \
32 ListOfBondsUnitTest \
33 PeriodentafelUnitTest \
34 TesselationUnitTest \
35 Tesselation_BoundaryTriangleUnitTest \
36 Tesselation_InOutsideUnitTest \
37 WorldTimeUnitTest
38
39# these ones are checked
40TESTS += $(GENERALTESTS)
41# these ones are built for checking only
42check_PROGRAMS += $(GENERALTESTS)
43# ... and not installed
44noinst_PROGRAMS += $(GENERALTESTS) TestRunner
45
46BOOST_LIB = \
47 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
48 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
49 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
50
51ALLLIBS = \
52 ../libMolecuilderUI.la \
53 ../libMolecuilder.la \
54 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
55 ${CodePatterns_LIBS} \
56 $(BOOST_LIB)
57
58TESTSOURCES = \
59 ${ACTIONTESTSSOURCES} \
60 ${DESCRIPTORTESTSSOURCES} \
61 ${LINEARALGEBRATESTSSOURCES} \
62 ${PARSERTESTSSOURCES} \
63 ${RANDOMNUMBERTESTSSOURCES} \
64 ${SHAPETESTSSOURCES} \
65 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
66 ${UIELEMENTSMENUTESTSSOURCES} \
67 AnalysisBondsUnitTest.cpp \
68 AnalysisCorrelationToPointUnitTest.cpp \
69 AnalysisCorrelationToSurfaceUnitTest.cpp \
70 AnalysisPairCorrelationUnitTest.cpp \
71 BondGraphUnitTest.cpp \
72 BoxUnitTest.cpp \
73 CountBondsUnitTest.cpp \
74 ElementUnitTest.cpp \
75 FormulaUnitTest.cpp \
76 LinkedCellUnitTest.cpp \
77 ListOfBondsUnitTest.cpp \
78 PeriodentafelUnitTest.cpp \
79 TesselationUnitTest.cpp \
80 Tesselation_BoundaryTriangleUnitTest.cpp \
81 Tesselation_InsideOutsideUnitTest.cpp \
82 WorldTimeUnitTest.cpp
83
84TESTHEADERS = \
85 ${ACTIONTESTSHEADERS} \
86 ${DESCRIPTORTESTSHEADERS} \
87 ${LINEARALGEBRATESTSHEADERS} \
88 ${PARSERTESTSHEADERS} \
89 ${RANDOMNUMBERTESTSHEADERS} \
90 ${SHAPETESTSHEADERS} \
91 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
92 ${UIELEMENTSMENUTESTSHEADERS} \
93 AnalysisBondsUnitTest.hpp \
94 AnalysisCorrelationToPointUnitTest.hpp \
95 AnalysisCorrelationToSurfaceUnitTest.hpp \
96 AnalysisPairCorrelationUnitTest.hpp \
97 BondGraphUnitTest.hpp \
98 BoxUnitTest.hpp \
99 CountBondsUnitTest.hpp \
100 ElementUnitTest.hpp \
101 FormulaUnitTest.hpp \
102 LinkedCellUnitTest.hpp \
103 ListOfBondsUnitTest.hpp \
104 PeriodentafelUnitTest.hpp \
105 TesselationUnitTest.hpp \
106 Tesselation_BoundaryTriangleUnitTest.hpp \
107 Tesselation_InsideOutsideUnitTest.hpp \
108 WorldTimeUnitTest.hpp
109
110
111AnalysisBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
112 AnalysisBondsUnitTest.cpp \
113 AnalysisBondsUnitTest.hpp
114AnalysisBondsUnitTest_LDADD = ${ALLLIBS}
115
116AnalysisCorrelationToPointUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
117 AnalysisCorrelationToPointUnitTest.cpp \
118 AnalysisCorrelationToPointUnitTest.hpp
119AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
120
121AnalysisCorrelationToSurfaceUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
122 AnalysisCorrelationToSurfaceUnitTest.cpp \
123 AnalysisCorrelationToSurfaceUnitTest.hpp
124AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
125
126AnalysisPairCorrelationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
127 AnalysisPairCorrelationUnitTest.cpp \
128 AnalysisPairCorrelationUnitTest.hpp
129AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
130
131BondGraphUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
132 BondGraphUnitTest.cpp \
133 BondGraphUnitTest.hpp
134BondGraphUnitTest_LDADD = ${ALLLIBS}
135
136BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
137 BoxUnitTest.cpp \
138 BoxUnitTest.hpp
139BoxUnitTest_LDADD = ${ALLLIBS}
140
141CountBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
142 CountBondsUnitTest.cpp \
143 CountBondsUnitTest.hpp
144CountBondsUnitTest_LDADD = ${ALLLIBS}
145
146ElementUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
147 ElementUnitTest.cpp \
148 ../element.cpp \
149 ElementUnitTest.hpp \
150 ../element.hpp
151ElementUnitTest_LDADD = \
152 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
153
154FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
155 FormulaUnitTest.cpp \
156 FormulaUnitTest.hpp
157FormulaUnittest_LDADD = ${ALLLIBS}
158
159LinkedCellUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
160 LinkedCellUnitTest.cpp \
161 LinkedCellUnitTest.hpp
162LinkedCellUnitTest_LDADD = ${ALLLIBS}
163
164ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
165 ListOfBondsUnitTest.cpp \
166 ListOfBondsUnitTest.hpp
167ListOfBondsUnitTest_LDADD = ${ALLLIBS}
168
169PeriodentafelUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
170 PeriodentafelUnitTest.cpp \
171 PeriodentafelUnitTest.hpp
172PeriodentafelUnitTest_LDADD = ${ALLLIBS}
173
174TesselationUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
175 TesselationUnitTest.cpp \
176 TesselationUnitTest.hpp
177TesselationUnitTest_LDADD = ${ALLLIBS}
178
179Tesselation_BoundaryTriangleUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
180 Tesselation_BoundaryTriangleUnitTest.cpp \
181 Tesselation_BoundaryTriangleUnitTest.hpp
182Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
183
184Tesselation_InOutsideUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
185 Tesselation_InsideOutsideUnitTest.cpp \
186 Tesselation_InsideOutsideUnitTest.hpp
187Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
188
189WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
190 WorldTimeUnitTest.cpp \
191 WorldTimeUnitTest.hpp \
192 ../WorldTime.cpp \
193 ../WorldTime.hpp
194WorldTimeUnitTest_LDADD = ${BOOST_LIB}
195
196
197TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
198TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
199
200#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.