source: src/unittests/Makefile.am@ 35b698

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

BIG CHANGE: config::load and config::save in ParseCommandLineOptions() and main() replaced with FormatParser replacements.

Fragmentation:

  • FIX: MoleculeFillWithMoleculeAction: filler atoms have to be removed before the system can be stored to file.
  • FIX: PcpParser::load() - has to put the molecule also into World's MoleculeListClass (otherwise the name cannot be set right after loading)
  • new Libparser.a
  • all sources from PARSER subdir are compiled into libparser such that only ParserUnitTest is recompiled.

Testfixes:

  • testsuite-fragmentation - changes to due to different -f calling syntax.
  • most of the xyz files had to be replaced due to a single whitespace at the end of each entry: Domain/6, Simple_configuration/2, Simple_configuration/3, Simple_configuration/4, Simple_configuration/5, Simple_configuration/8
  • in many cases were the number orbitals (and thus MaxMinStopStep) wrong: Filling/1, Simple_configuration/4, Simple_configuration/5

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

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