source: src/unittests/Makefile.am@ 456e78

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

Removed ActOnAllUnitTest.

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