source: src/unittests/Makefile.am@ 03a713

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 03a713 was 53bc04, checked in by Frederik Heber <heber@…>, 13 years ago

BUG: Added spherical and non-convex test cases to Tesselation_InsideOutsideUnitTest.

  • we now test not only on cube, but also on sphere and a non-convex shape.
  • creation is generalized to allow for different shapes, also we use extension of VectorSet to allow for transformations.
  • TESTFIX: Added Tesselation_InOutsideUnitTestto XFAILs. Merge with enhancement of the test.
  • Property mode set to 100644
File size: 4.4 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
9include ../../src/Actions/unittests/Makefile.am
10include ../../src/Analysis/unittests/Makefile.am
11include ../../src/Atom/unittests/Makefile.am
12include ../../src/Descriptors/unittests/Makefile.am
13include ../../src/Element/unittests/Makefile.am
14include ../../src/Fragmentation/unittests/Makefile.am
15include ../../src/Graph/unittests/Makefile.am
16include ../../src/LinkedCell/unittests/Makefile.am
17include ../../src/Parser/unittests/Makefile.am
18include ../../src/RandomNumbers/unittests/Makefile.am
19include ../../src/Shapes/unittests/Makefile.am
20include ../../src/Tesselation/unittests/Makefile.am
21include ../../src/UIElements/CommandLineUI/unittests/Makefile.am
22include ../../src/UIElements/Menu/unittests/Makefile.am
23
24INCLUDES = -I$(top_srcdir)/src -I$(top_srcdir)/LinearAlgebra/src
25
26AM_LDFLAGS = ${CodePatterns_LIBS} $(CPPUNIT_LIBS) -ldl
27AM_CPPFLAGS = ${BOOST_CPPFLAGS} $(CPPUNIT_CFLAGS) ${CodePatterns_CFLAGS}
28
29GENERALTESTS = \
30 BoxUnitTest \
31 Box_BoundaryConditionsTest \
32 FormulaUnittest \
33 ListOfBondsUnitTest \
34 WorldTimeUnitTest
35
36# these ones are checked
37TESTS += $(GENERALTESTS)
38# these ones are built for checking only
39check_PROGRAMS += $(GENERALTESTS)
40# ... and not installed
41noinst_PROGRAMS += $(GENERALTESTS)
42
43if CONDECUT
44noinst_PROGRAMS += TestRunner
45endif
46
47
48BOOST_LIB = \
49 $(BOOST_PROGRAM_OPTIONS_LDFLAGS) $(BOOST_PROGRAM_OPTIONS_LIBS) \
50 $(BOOST_FILESYSTEM_LDFLAGS) $(BOOST_FILESYSTEM_LIBS) \
51 $(BOOST_SERIALIZATION_LDFLAGS) $(BOOST_SERIALIZATION_LIBS)
52
53GENERALLIBS = \
54 ../libMolecuilder.la \
55 ../libMolecuilderHelpers.la \
56 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
57 ${CodePatterns_LIBS} \
58 $(BOOST_LIB)
59
60ALLLIBS = \
61 ../libMolecuilderUI.la \
62 ../libMolecuilder.la \
63 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la \
64 ${CodePatterns_LIBS} \
65 $(BOOST_LIB)
66
67TESTSOURCES = \
68 ${ACTIONTESTSSOURCES} \
69 ${ANALYSISTESTSSOURCES} \
70 ${DESCRIPTORTESTSSOURCES} \
71 ${ELEMENTTESTSSOURCES} \
72 ${FRAGMENTATIONTESTSSOURCES} \
73 ${GRAPHTESTSSOURCES} \
74 ${LINKEDCELLTESTSSOURCES} \
75 ${LINEARALGEBRATESTSSOURCES} \
76 ${PARSERTESTSSOURCES} \
77 ${RANDOMNUMBERTESTSSOURCES} \
78 ${SHAPETESTSSOURCES} \
79 ${TESSELATIONTESTSSOURCES} \
80 $(UIELEMENTSCOMMANDLINEPARSERTESTSSOURCES) \
81 ${UIELEMENTSMENUTESTSSOURCES} \
82 stubs/ObserverStub.cpp \
83 BoxUnitTest.cpp \
84 Box_BoundaryConditionsUnitTest.cpp \
85 FormulaUnitTest.cpp \
86 ListOfBondsUnitTest.cpp \
87 WorldTimeUnitTest.cpp
88
89TESTHEADERS = \
90 ${ACTIONTESTSHEADERS} \
91 ${ANALYSISTESTSHEADERS} \
92 ${DESCRIPTORTESTSHEADERS} \
93 ${ELEMENTTESTSHEADERS} \
94 ${FRAGMENTATIONTESTSHEADERS} \
95 ${GRAPHTESTSHEADERS} \
96 ${LINKEDCELLTESTHEADERS} \
97 ${LINEARALGEBRATESTSHEADERS} \
98 ${PARSERTESTSHEADERS} \
99 ${RANDOMNUMBERTESTSHEADERS} \
100 ${SHAPETESTSHEADERS} \
101 ${TESSELATIONTESTSHEADERS} \
102 $(UIELEMENTSCOMMANDLINEPARSERTESTSHEADERS) \
103 ${UIELEMENTSMENUTESTSHEADERS} \
104 stubs/ObserverStub.hpp \
105 BoxUnitTest.hpp \
106 Box_BoundaryConditionsUnitTest.hpp \
107 FormulaUnitTest.hpp \
108 ListOfBondsUnitTest.hpp \
109 WorldTimeUnitTest.hpp
110
111
112BoxUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
113 BoxUnitTest.cpp \
114 BoxUnitTest.hpp \
115 stubs/ObserverStub.cpp \
116 stubs/ObserverStub.hpp
117BoxUnitTest_LDADD = \
118 ../libMolecuilder.la \
119 ../libMolecuilderShapes.la \
120 ../libMolecuilderHelpers.la \
121 $(top_builddir)/LinearAlgebra/src/LinearAlgebra/libLinearAlgebra.la
122
123Box_BoundaryConditionsTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
124 Box_BoundaryConditionsUnitTest.cpp \
125 Box_BoundaryConditionsUnitTest.hpp \
126 ../Box_BoundaryConditions.cpp \
127 ../Box_BoundaryConditions.hpp
128Box_BoundaryConditionsTest_LDADD = \
129 ${CodePatterns_LIBS} \
130 $(BOOST_LIB)
131
132FormulaUnittest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
133 FormulaUnitTest.cpp \
134 FormulaUnitTest.hpp
135FormulaUnittest_LDADD = $(ALLLIBS)
136
137ListOfBondsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
138 ListOfBondsUnitTest.cpp \
139 ListOfBondsUnitTest.hpp
140ListOfBondsUnitTest_LDADD = $(ALLLIBS)
141
142WorldTimeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \
143 WorldTimeUnitTest.cpp \
144 WorldTimeUnitTest.hpp \
145 ../WorldTime.cpp \
146 ../WorldTime.hpp
147WorldTimeUnitTest_LDADD = ${BOOST_LIB}
148
149
150TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
151TestRunner_LDADD = ${UILIBS} ${ALLLIBS}
152
153#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.