source: src/unittests/Makefile.am@ 10d290

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 10d290 was 10d290, checked in by Tillmann Crueger <crueger@…>, 14 years ago

Repaired build of testrunner for unittests

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