source: src/unittests/Makefile.am@ c0bccb

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

Moved SingletonTest to Patterns/unittests/SingletonUnitTest.

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