source: src/unittests/Makefile.am@ deddf6

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 deddf6 was deddf6, checked in by Frederik Heber <heber@…>, 14 years ago

New unit test for ActionRegistry.

  • checks whether a short form has been used by more than once Action.
  • unit test is placed in Actions/unittests but called from unittests/Makefile.am via SUBDIRS to ensure that all libs are compiled.
  • Property mode set to 100644
File size: 9.7 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4SUBDIRS = \
5 ../Actions/unittests \
6 ../Patterns/unittests
7
8INCLUDES = -I$(top_srcdir)/src
9
10AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
11AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
12AM_CPPFLAGS = ${BOOST_CPPFLAGS}
13
14TESTS = \
15 ActionSequenceTest \
16 ActOnAllUnitTest \
17 AnalysisBondsUnitTests \
18 AnalysisCorrelationToPointUnitTest \
19 AnalysisCorrelationToSurfaceUnitTest \
20 AnalysisPairCorrelationUnitTest \
21 atomsCalculationTest \
22 AtomDescriptorTest \
23 BondGraphUnitTest \
24 BoxUnittest \
25 CacheableTest \
26 CountBondsUnitTest \
27 FormulaUnittest \
28 InfoUnitTest \
29 LinearSystemOfEquationsUnitTest \
30 LineUnittest \
31 LinkedCellUnitTest \
32 ListOfBondsUnitTest \
33 LogUnitTest \
34 manipulateAtomsTest \
35 MatrixContentSymmetricUnitTest \
36 MatrixContentUnitTest \
37 MatrixUnittest \
38 MenuDescriptionUnitTest \
39 MoleculeDescriptorTest \
40 ObserverTest \
41 ParserCommonUnitTest \
42 ParserTremoloUnitTest \
43 periodentafelTest \
44 PlaneUnittest \
45 Registry \
46 ShapeUnittest \
47 SubspaceFactorizerUnitTest \
48 TesselationUnitTest \
49 Tesselation_BoundaryTriangleUnitTest \
50 Tesselation_InOutsideUnitTest \
51 VectorContentUnitTest \
52 VectorUnitTest
53
54
55check_PROGRAMS = $(TESTS)
56noinst_PROGRAMS = $(TESTS) TestRunner
57
58BOOST_LIB = $(BOOST_LDFLAGS) $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB)
59GSLLIBS = \
60 ../LinearAlgebra/libMolecuilderLinearAlgebra-@MOLECUILDER_API_VERSION@.la \
61 ../Exceptions/libMolecuilderExceptions-@MOLECUILDER_API_VERSION@.la \
62 ../Helpers/libMolecuilderHelpers-@MOLECUILDER_API_VERSION@.la \
63 $(BOOST_LIB)
64ALLLIBS = \
65 ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la \
66 ../Actions/libMolecuilderActions-@MOLECUILDER_API_VERSION@.la \
67 ${PARSERLIBS} \
68 ../libMolecuilder-@MOLECUILDER_API_VERSION@.la \
69 ${GSLLIBS}
70
71PARSERLIBS = ../Parser/libMolecuilderParser-@MOLECUILDER_API_VERSION@.la
72UILIBS = ../UIElements/libMolecuilderUI-@MOLECUILDER_API_VERSION@.la
73
74TESTSOURCES = \
75 ../Actions/unittests/ActionRegistryUnitTest.cpp \
76 ActOnAllUnitTest.cpp \
77 ActionSequenceTest.cpp \
78 analysisbondsunittest.cpp \
79 AnalysisCorrelationToPointUnitTest.cpp \
80 AnalysisCorrelationToSurfaceUnitTest.cpp \
81 AnalysisPairCorrelationUnitTest.cpp \
82 AtomDescriptorTest.cpp \
83 atomsCalculationTest.cpp \
84 bondgraphunittest.cpp \
85 BoxUnittest.cpp \
86 CacheableTest.cpp \
87 CountBondsUnitTest.cpp \
88 FormulaUnittest.cpp \
89 infounittest.cpp \
90 linearsystemofequationsunittest.cpp \
91 LineUnittest.cpp \
92 LinkedCellUnitTest.cpp \
93 listofbondsunittest.cpp \
94 logunittest.cpp \
95 MatrixContentSymmetricUnittest.cpp \
96 MatrixContentUnittest.cpp \
97 MatrixUnittest.cpp \
98 manipulateAtomsTest.cpp \
99 MenuDescriptionUnitTest.cpp \
100 MoleculeDescriptorTest.cpp \
101 ObserverTest.cpp \
102 ParserCommonUnitTest.cpp \
103 ParserTremoloUnitTest.cpp \
104 periodentafelTest.cpp \
105 PlaneUnittest.cpp \
106 RegistryUnitTest.cpp \
107 ShapeUnittest.cpp \
108 ../Patterns/unittests/SingletonUnitTest.cpp \
109 tesselationunittest.cpp \
110 tesselation_boundarytriangleunittest.cpp \
111 tesselation_insideoutsideunittest.cpp \
112 VectorContentUnittest.cpp \
113 vectorunittest.cpp
114
115TESTHEADERS = \
116 ../Actions/unittests/ActionRegistryUnitTest.hpp \
117 ActOnAllUnitTest.hpp \
118 ActionSequenceTest.hpp \
119 analysisbondsunittest.hpp \
120 AnalysisCorrelationToPointUnitTest.hpp \
121 AnalysisCorrelationToSurfaceUnitTest.hpp \
122 AnalysisPairCorrelationUnitTest.hpp \
123 AtomDescriptorTest.hpp \
124 atomsCalculationTest.hpp \
125 bondgraphunittest.hpp \
126 BoxUnittest.hpp \
127 CacheableTest.hpp \
128 CountBondsUnitTest.hpp \
129 FormulaUnittest.hpp \
130 infounittest.hpp \
131 linearsystemofequationsunittest.hpp \
132 LineUnittest.hpp \
133 LinkedCellUnitTest.hpp \
134 listofbondsunittest.hpp \
135 logunittest.hpp \
136 manipulateAtomsTest.hpp \
137 MatrixContentSymmetricUnittest.hpp \
138 MatrixContentUnittest.hpp \
139 MatrixUnittest.hpp \
140 MenuDescriptionUnitTest.hpp \
141 MoleculeDescriptorTest.hpp \
142 ObserverTest.hpp \
143 periodentafelTest.hpp \
144 ParserCommonUnitTest.hpp \
145 ParserTremoloUnitTest.hpp \
146 PlaneUnittest.hpp \
147 RegistryUnitTest.hpp \
148 ShapeUnittest.hpp \
149 ../Patterns/unittests/SingletonUnitTest.hpp \
150 stackclassunittest.hpp \
151 tesselationunittest.hpp \
152 tesselation_boundarytriangleunittest.hpp \
153 tesselation_insideoutsideunittest.hpp \
154 VectorContentUnittest.hpp \
155 vectorunittest.hpp
156
157
158ActionSequenceTest_SOURCES = UnitTestMain.cpp ActionSequenceTest.cpp ActionSequenceTest.hpp
159ActionSequenceTest_LDADD = ${UILIBS} ${ALLLIBS}
160
161ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
162ActOnAllUnitTest_LDADD = ${ALLLIBS}
163
164AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
165AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
166
167AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
168AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
169
170AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
171AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
172
173AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
174AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
175
176atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
177atomsCalculationTest_LDADD = ${ALLLIBS}
178
179AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
180AtomDescriptorTest_LDADD = ${ALLLIBS}
181
182BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
183BondGraphUnitTest_LDADD = ${ALLLIBS}
184
185BoxUnittest_SOURCES = UnitTestMain.cpp BoxUnittest.cpp BoxUnittest.hpp
186BoxUnittest_LDADD = ${ALLLIBS}
187
188CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
189CacheableTest_LDADD = ${ALLLIBS}
190
191CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
192CountBondsUnitTest_LDADD = ${ALLLIBS}
193
194FormulaUnittest_SOURCES = UnitTestMain.cpp FormulaUnittest.cpp FormulaUnittest.hpp
195FormulaUnittest_LDADD = ${ALLLIBS}
196
197MatrixContentSymmetricUnitTest_SOURCES = UnitTestMain.cpp MatrixContentSymmetricUnittest.cpp MatrixContentSymmetricUnittest
198MatrixContentSymmetricUnitTest_LDADD = ${ALLLIBS}
199
200MatrixContentUnitTest_SOURCES = UnitTestMain.cpp MatrixContentUnittest.cpp MatrixContentUnittest.hpp
201MatrixContentUnitTest_LDADD = ${ALLLIBS}
202
203InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
204InfoUnitTest_LDADD = ${ALLLIBS}
205
206LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
207LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
208
209LineUnittest_SOURCES = UnitTestMain.cpp LineUnittest.cpp LineUnittest.hpp
210LineUnittest_LDADD = ${ALLLIBS}
211
212LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
213LinkedCellUnitTest_LDADD = ${ALLLIBS}
214
215ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
216ListOfBondsUnitTest_LDADD = ${ALLLIBS}
217
218LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
219LogUnitTest_LDADD = ${ALLLIBS}
220
221manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
222manipulateAtomsTest_LDADD = ${UILIBS} ${ALLLIBS}
223
224MatrixUnittest_SOURCES = UnitTestMain.cpp MatrixUnittest.cpp MatrixUnittest.hpp
225MatrixUnittest_LDADD = ${ALLLIBS}
226
227MenuDescriptionUnitTest_SOURCES = UnitTestMain.cpp MenuDescriptionUnitTest.cpp MenuDescriptionUnitTest.hpp
228MenuDescriptionUnitTest_LDADD = ${ALLLIBS}
229
230MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
231MoleculeDescriptorTest_LDADD = ${ALLLIBS}
232
233ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
234ObserverTest_LDADD = ${ALLLIBS}
235
236ParserCommonUnitTest_SOURCES = UnitTestMain.cpp ParserCommonUnitTest.cpp ParserCommonUnitTest.hpp
237ParserCommonUnitTest_LDADD = ${ALLLIBS}
238
239ParserTremoloUnitTest_SOURCES = UnitTestMain.cpp ParserTremoloUnitTest.cpp ParserTremoloUnitTest.hpp
240ParserTremoloUnitTest_LDADD = ${ALLLIBS}
241
242periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
243periodentafelTest_LDADD = ${ALLLIBS}
244
245PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
246PlaneUnittest_LDADD = ${ALLLIBS}
247
248Registry_SOURCES = UnitTestMain.cpp RegistryUnitTest.cpp RegistryUnitTest.hpp
249Registry_LDADD = ${ALLLIBS}
250
251ShapeUnittest_SOURCES = UnitTestMain.cpp ShapeUnittest.cpp ShapeUnittest.hpp
252ShapeUnittest_LDADD = ${ALLLIBS}
253
254SubspaceFactorizerUnitTest_SOURCES = UnitTestMain.cpp SubspaceFactorizerUnittest.cpp SubspaceFactorizerUnittest.hpp
255SubspaceFactorizerUnitTest_LDADD = ${GSLLIBS}
256
257TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
258TesselationUnitTest_LDADD = ${ALLLIBS}
259
260Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
261Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
262
263Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
264Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
265
266TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
267TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
268
269VectorContentUnitTest_SOURCES = UnitTestMain.cpp VectorContentUnittest.cpp VectorContentUnittest.hpp
270VectorContentUnitTest_LDADD = ${ALLLIBS}
271
272VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
273VectorUnitTest_LDADD = ${ALLLIBS}
274
275#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.