source: src/unittests/Makefile.am@ a2ab15

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

Merge branch 'StateAndFormatParser' into CommandLineActionMapping

Conflicts:

molecuilder/src/Makefile.am
molecuilder/src/tesselation.cpp
molecuilder/src/unittests/Makefile.am

The following conflicts had to be resolved:

  • molecuilder/src/Makefile.am had an old version of the HEADER definition which would not be merged automatically. ${PARSERHEADER} was missing.
  • molecuilder/src/unittests/Makefile.am had an blank line too much
  • TesselPoint::TesselPoint() had an older version where TesselPoint::Name was initialized to "-" instead of NULL. The latter should be correct due to missing delete(Name) in destructor.
  • compilation errors arose due to the private nature of Vector::x[] introduced in the branch VectorRefactoring. This has been fixed in XyzParser, TremoloParser and the ParserUnitTest.
  • ParserUnitTest runs fine.

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

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