source: src/unittests/Makefile.am@ 1024cb

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

Merge commit 'jupiter/MoleculeStartEndSwitch' into CommandLineActionMapping

Conflicts:

molecuilder/src/Makefile.am
molecuilder/src/builder.cpp
molecuilder/src/config.cpp
molecuilder/src/helpers.hpp
molecuilder/src/molecule.cpp
molecuilder/src/molecule_dynamics.cpp
molecuilder/src/molecule_fragmentation.cpp
molecuilder/src/molecule_geometry.cpp
molecuilder/src/molecule_graph.cpp
molecuilder/src/moleculelist.cpp
molecuilder/src/unittests/AnalysisCorrelationToPointUnitTest.cpp
molecuilder/src/unittests/listofbondsunittest.cpp

Integration of MoleculeStartEndSwitch had the following consequences:

  • no more AtomCount -> getAtomCount()
  • no more start/end -> begin(), end() and iterator
  • no more decent ordering in atomic ids (hence, Simple_configuration/8 and Domain/5, Domain/6 now check by comparing sorted xyz, not confs)

There is still a huge problem with bonds. One test runs into an endless loop.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 8.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4INCLUDES = -I$(top_srcdir)/src
5
6AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
7AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
8
9MENUTESTS = \
10 ActionSequenceTest
11
12TESTS = \
13 ActOnAllUnitTest \
14 AnalysisBondsUnitTests \
15 AnalysisCorrelationToPointUnitTest \
16 AnalysisCorrelationToSurfaceUnitTest \
17 AnalysisPairCorrelationUnitTest \
18 atomsCalculationTest \
19 AtomDescriptorTest \
20 BondGraphUnitTest \
21 CacheableTest \
22 CountBondsUnitTest \
23 GSLMatrixSymmetricUnitTest \
24 GSLMatrixUnitTest \
25 GSLVectorUnitTest \
26 InfoUnitTest \
27 LinearSystemOfEquationsUnitTest \
28 LinkedCellUnitTest \
29 ListOfBondsUnitTest \
30 LogUnitTest \
31 manipulateAtomsTest \
32 MemoryUsageObserverUnitTest \
33 MemoryAllocatorUnitTest \
34 MoleculeDescriptorTest \
35 ObserverTest \
36 ParserUnitTest \
37 periodentafelTest \
38 PlaneUnittest \
39 SingletonTest \
40 StackClassUnitTest \
41 TesselationUnitTest \
42 Tesselation_BoundaryTriangleUnitTest \
43 Tesselation_InOutsideUnitTest \
44 VectorUnitTest \
45 ${MENUTESTS}
46
47
48check_PROGRAMS = $(TESTS)
49noinst_PROGRAMS = $(TESTS) TestRunner
50
51GSLLIBS = ../libgslwrapper.a $(BOOST_LIB) ${BOOST_THREAD_LIB}
52ALLLIBS = ../libmolecuilder.a ${GSLLIBS}
53
54TESTSOURCES = \
55 ActOnAllUnitTest.cpp \
56 ActionSequenceTest.cpp \
57 analysisbondsunittest.cpp \
58 AnalysisCorrelationToPointUnitTest.cpp \
59 AnalysisCorrelationToSurfaceUnitTest.cpp \
60 AnalysisPairCorrelationUnitTest.cpp \
61 AtomDescriptorTest.cpp \
62 atomsCalculationTest.cpp \
63 bondgraphunittest.cpp \
64 CacheableTest.cpp \
65 CountBondsUnitTest.cpp \
66 gslmatrixsymmetricunittest.cpp \
67 gslmatrixunittest.cpp \
68 gslvectorunittest.cpp \
69 infounittest.cpp \
70 linearsystemofequationsunittest.cpp \
71 LinkedCellUnitTest.cpp \
72 listofbondsunittest.cpp \
73 logunittest.cpp \
74 manipulateAtomsTest.cpp \
75 memoryallocatorunittest.cpp \
76 memoryusageobserverunittest.cpp \
77 MoleculeDescriptorTest.cpp \
78 ObserverTest.cpp \
79 ParserUnitTest.cpp \
80 periodentafelTest.cpp \
81 PlaneUnittest.cpp \
82 SingletonTest.cpp \
83 stackclassunittest.cpp \
84 tesselationunittest.cpp \
85 tesselation_boundarytriangleunittest.cpp \
86 tesselation_insideoutsideunittest.cpp \
87 vectorunittest.cpp
88
89TESTHEADERS = \
90 ActOnAllUnitTest.hpp \
91 ActionSequenceTest.hpp \
92 analysisbondsunittest.hpp \
93 AnalysisCorrelationToPointUnitTest.hpp \
94 AnalysisCorrelationToSurfaceUnitTest.hpp \
95 AnalysisPairCorrelationUnitTest.hpp \
96 AtomDescriptorTest.hpp \
97 atomsCalculationTest.hpp \
98 bondgraphunittest.hpp \
99 CacheableTest.hpp \
100 CountBondsUnitTest.hpp \
101 gslmatrixsymmetricunittest.hpp \
102 gslmatrixunittest.hpp \
103 gslvectorunittest.hpp \
104 infounittest.hpp \
105 linearsystemofequationsunittest.hpp \
106 LinkedCellUnitTest.hpp \
107 listofbondsunittest.hpp \
108 logunittest.hpp \
109 manipulateAtomsTest.hpp \
110 memoryallocatorunittest.hpp \
111 memoryusageobserverunittest.hpp \
112 MoleculeDescriptorTest.hpp \
113 periodentafelTest.hpp \
114 PlaneUnittest.hpp \
115 ObserverTest.hpp \
116 SingletonTest.hpp \
117 stackclassunittest.hpp \
118 tesselationunittest.hpp \
119 tesselation_boundarytriangleunittest.hpp \
120 tesselation_insideoutsideunittest.hpp \
121 vectorunittest.hpp
122
123
124ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp
125ActionSequenceTest_LDADD = ${ALLLIBS}
126
127ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
128ActOnAllUnitTest_LDADD = ${ALLLIBS}
129
130AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
131AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
132
133AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
134AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
135
136AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
137AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
138
139AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
140AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
141
142atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
143atomsCalculationTest_LDADD = ${ALLLIBS}
144
145AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
146AtomDescriptorTest_LDADD = ${ALLLIBS}
147
148BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
149BondGraphUnitTest_LDADD = ${ALLLIBS}
150
151CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
152CacheableTest_LDADD = ${ALLLIBS}
153
154CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp
155CountBondsUnitTest_LDADD = ${ALLLIBS}
156
157GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
158GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
159
160GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
161GSLMatrixUnitTest_LDADD = ${GSLLIBS}
162
163GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
164GSLVectorUnitTest_LDADD = ${GSLLIBS}
165
166InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
167InfoUnitTest_LDADD = ${ALLLIBS}
168
169LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
170LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
171
172LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp
173LinkedCellUnitTest_LDADD = ${ALLLIBS}
174
175ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
176ListOfBondsUnitTest_LDADD = ${ALLLIBS}
177
178LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
179LogUnitTest_LDADD = ${ALLLIBS}
180
181manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
182manipulateAtomsTest_LDADD = ${ALLLIBS}
183
184MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryallocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp
185MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
186
187MemoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp ../memoryallocator.hpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
188MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
189
190MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
191MoleculeDescriptorTest_LDADD = ${ALLLIBS}
192
193ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
194ObserverTest_LDADD = ${ALLLIBS}
195
196ParserUnitTest_SOURCES = UnitTestMain.cpp ParserUnitTest.cpp ParserUnitTest.hpp
197ParserUnitTest_LDADD = ${ALLLIBS}
198
199periodentafelTest_SOURCES = UnitTestMain.cpp periodentafelTest.cpp periodentafelTest.hpp
200periodentafelTest_LDADD = ${ALLLIBS}
201
202PlaneUnittest_SOURCES = UnitTestMain.cpp PlaneUnittest.cpp PlaneUnittest.hpp
203PlaneUnittest_LDADD = ${ALLLIBS}
204
205SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
206SingletonTest_LDADD = $(BOOST_LIB) ${BOOST_THREAD_LIB}
207
208StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
209StackClassUnitTest_LDADD = ${ALLLIBS}
210
211TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
212TesselationUnitTest_LDADD = ${ALLLIBS}
213
214Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
215Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
216
217Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
218Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
219
220TestRunner_SOURCES = TestRunnerMain.cpp ../memoryallocator.hpp ../memoryallocator.cpp ../memoryusageobserver.cpp ../memoryusageobserver.hpp $(TESTSOURCES) $(TESTHEADERS)
221TestRunner_LDADD = ${ALLLIBS}
222
223VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
224VectorUnitTest_LDADD = ${ALLLIBS}
225
226#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.