source: src/unittests/Makefile.am@ 355af8

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

Argument_t now has two Comparators on indices or distance.

  • added unit test on class argument_t's comparators.
  • Property mode set to 100644
File size: 5.8 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4check_PROGRAMS =
5noinst_PROGRAMS =
6TESTS =
7XFAIL_TESTS =
8
9if CONDCPPUNIT
10
11include ../../src/Actions/unittests/Makefile.am
12include ../../src/Analysis/unittests/Makefile.am
13include ../../src/Atom/unittests/Makefile.am
14include ../../src/Descriptors/unittests/Makefile.am
15include ../../src/Element/unittests/Makefile.am
16include ../../src/Filling/unittests/Makefile.am
17include ../../src/FunctionApproximation/unittests/Makefile.am
18include ../../src/Fragmentation/unittests/Makefile.am
19include ../../src/Fragmentation/Homology/unittests/Makefile.am
20include ../../src/Fragmentation/Summation/unittests/Makefile.am
21include ../../src/Fragmentation/SetValues/unittests/Makefile.am
22include ../../src/Graph/unittests/Makefile.am
23
24if CONDJOBMARKET
25include ../../src/Jobs/unittests/Makefile.am
26include ../../src/Jobs/Grid/unittests/Makefile.am
27endif
28
29include ../../src/LinkedCell/unittests/Makefile.am
30include ../../src/Parameters/unittests/Makefile.am
31include ../../src/Parser/unittests/Makefile.am
32include ../../src/Potentials/Specifics/unittests/Makefile.am
33include ../../src/RandomNumbers/unittests/Makefile.am
34include ../../src/Shapes/unittests/Makefile.am
35include ../../src/Tesselation/unittests/Makefile.am
36include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
37include ../../src/UIElements/Menu/unittests/Makefile.am
38
39INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
40
41AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
42AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
43
44GENERALTESTS = \
45 AtomIdSetUnitTest \
46 BoxUnitTest \
47 Box_BoundaryConditionsTest \
48 FormulaUnittest \
49 ListOfBondsUnitTest \
50 MoleculeUnitTest \
51 WorldTimeUnitTest
52
53# these ones are checked
54TESTS += $(GENERALTESTS)
55# these ones are built for checking only
56check_PROGRAMS += $(GENERALTESTS)
57# ... and not installed
58noinst_PROGRAMS += $(GENERALTESTS)
59
60if CONDECUT
61noinst_PROGRAMS += TestRunner
62endif
63
64
65BOOST_LIB = \
66 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
67 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
68 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS) \
69 $(BOOST_SYSTEM_LDFLAGS) $(BOOST_SYSTEM_LIBS)
70
71GENERALLIBS = \
72 ../libMolecuilder.la \
73 ../libMolecuilderHelpers.la \
74 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
75 ${CodePatterns_LIBS} \
76 $(BOOST_LIB)
77
78ALLLIBS = \
79 ../libMolecuilderFilling.la \
80 ../libMolecuilderUI.la \
81 ../libMolecuilder.la
82if CONDJOBMARKET
83ALLLIBS += \
84 ../libMolecuilderJobs.la
85endif
86ALLLIBS += \
87 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
88 ${CodePatterns_LIBS} \
89 $(BOOST_LIB)
90
91TESTSOURCES = \
92 ${ACTIONTESTSSOURCES} \
93 ${ANALYSISTESTSSOURCES} \
94 ${DESCRIPTORTESTSSOURCES} \
95 ${ELEMENTTESTSSOURCES} \
96 ${FILLINGTESTSSOURCES} \
97 ${FRAGMENTATIONTESTSSOURCES} \
98 ${GRAPHTESTSSOURCES} \
99 ${LINKEDCELLTESTSSOURCES} \
100 ${LINEARALGEBRATESTSSOURCES} \
101 ${PARAMETERTESTSSOURCES} \
102 ${PARSERTESTSSOURCES} \
103 ${RANDOMNUMBERTESTSSOURCES} \
104 ${SHAPETESTSSOURCES} \
105 ${TESSELATIONTESTSSOURCES} \
106 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
107 ${UIELEMENTSMENUTESTSSOURCES} \
108 stubs/ObserverStub.cpp \
109 AtomIdSetUnitTest.cpp \
110 BoxUnitTest.cpp \
111 Box_BoundaryConditionsUnitTest.cpp \
112 FormulaUnitTest.cpp \
113 ListOfBondsUnitTest.cpp \
114 MoleculeUnitTest.cpp \
115 WorldTimeUnitTest.cpp
116
117TESTHEADERS = \
118 ${ACTIONTESTSHEADERS} \
119 ${ANALYSISTESTSHEADERS} \
120 ${DESCRIPTORTESTSHEADERS} \
121 ${ELEMENTTESTSHEADERS} \
122 ${FILLINGTESTSHEADERS} \
123 ${FRAGMENTATIONTESTSHEADERS} \
124 ${GRAPHTESTSHEADERS} \
125 ${LINKEDCELLTESTHEADERS} \
126 ${LINEARALGEBRATESTSHEADERS} \
127 ${PARAMETERTESTSHEADERS} \
128 ${PARSERTESTSHEADERS} \
129 ${RANDOMNUMBERTESTSHEADERS} \
130 ${SHAPETESTSHEADERS} \
131 ${TESSELATIONTESTSHEADERS} \
132 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
133 ${UIELEMENTSMENUTESTSHEADERS} \
134 stubs/ObserverStub.hpp \
135 AtomIdSetUnitTest.hpp \
136 BoxUnitTest.hpp \
137 Box_BoundaryConditionsUnitTest.hpp \
138 FormulaUnitTest.hpp \
139 ListOfBondsUnitTest.hpp \
140 MoleculeUnitTest.hpp \
141 WorldTimeUnitTest.hpp
142
143
144BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
145 BoxUnitTest.cpp \
146 BoxUnitTest.hpp \
147 stubs/ObserverStub.cpp \
148 stubs/ObserverStub.hpp \
149 ../Shapes/unittests/stubs/ApproximateShapeAreaStub.cpp \
150 ../Shapes/unittests/stubs/ApproximateShapeVolumeStub.cpp
151BoxUnitTest_LDADD = \
152 ../libMolecuilder.la \
153 ../libMolecuilderShapes.la \
154 ../libMolecuilderHelpers.la \
155 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
156 ${CodePatterns_LIBS}
157
158AtomIdSetUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
159 AtomIdSetUnitTest.cpp \
160 AtomIdSetUnitTest.hpp
161AtomIdSetUnitTest_LDADD = $(ALLLIBS)
162
163Box_BoundaryConditionsTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
164 Box_BoundaryConditionsUnitTest.cpp \
165 Box_BoundaryConditionsUnitTest.hpp \
166 ../Box_BoundaryConditions.cpp \
167 ../Box_BoundaryConditions.hpp
168Box_BoundaryConditionsTest_LDADD = \
169 ${CodePatterns_LIBS} \
170 $(BOOST_LIB)
171
172FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
173 FormulaUnitTest.cpp \
174 FormulaUnitTest.hpp
175FormulaUnittest_LDADD = $(ALLLIBS)
176
177ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
178 ListOfBondsUnitTest.cpp \
179 ListOfBondsUnitTest.hpp
180ListOfBondsUnitTest_LDADD = $(ALLLIBS)
181
182MoleculeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
183 MoleculeUnitTest.cpp \
184 MoleculeUnitTest.hpp
185MoleculeUnitTest_LDADD = $(ALLLIBS)
186
187WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
188 WorldTimeUnitTest.cpp \
189 WorldTimeUnitTest.hpp \
190 ../WorldTime.cpp \
191 ../WorldTime.hpp
192WorldTimeUnitTest_LDADD = ${BOOST_LIB}
193
194
195TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
196TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
197
198#AUTOMAKE_OPTIONS = parallel-tests
199
200endif
Note: See TracBrowser for help on using the repository browser.