source: src/Helpers/unittests/Makefile.am@ 084729c

Action_Thermostats Add_AtomRandomPerturbation Add_RotateAroundBondAction Add_SelectAtomByNameAction Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_StructOpt_integration_tests Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_ChronosMutex Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion GeometryObjects Gui_displays_atomic_force_velocity IndependentFragmentGrids_IntegrationTest JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks RotateToPrincipalAxisSystem_UndoRedo StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg ThirdParty_MPQC_rebuilt_buildsystem TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps Ubuntu_1604_changes stable
Last change on this file since 084729c was 084729c, checked in by Frederik Heber <heber@…>, 8 years ago

Squashed 'ThirdParty/CodePatterns/' content from commit c1e1041

git-subtree-dir: ThirdParty/CodePatterns
git-subtree-split: c1e10418c454f98be2f43d93167642b0008428fc

  • Property mode set to 100644
File size: 3.2 KB
Line 
1# PLEASE adhere to the alphabetical ordering in this Makefile!
2# Also indentation by a single tab
3
4# NOTE that all paths are relative to ./src (because we get included there!)
5
6TESTS += \
7 AssertUnitTest \
8 ChronosUnitTest \
9 InfoUnitTest \
10 IteratorAdaptorsUnitTest \
11 LogUnitTest \
12 RangeUnitTest
13
14TESTSOURCES += \
15 ../Helpers/unittests/AssertUnitTest.cpp \
16 ../Helpers/unittests/ChronosUnitTest.cpp \
17 ../Helpers/unittests/InfoUnitTest.cpp \
18 ../Helpers/unittests/LogUnitTest.cpp \
19 ../Helpers/unittests/RangeUnitTest.cpp
20
21TESTHEADERS += \
22 ../Helpers/unittests/AssertUnitTest.hpp \
23 ../Helpers/unittests/ChronosUnitTest.hpp \
24 ../Helpers/unittests/InfoUnitTest.hpp \
25 ../Helpers/unittests/LogUnitTest.hpp \
26 ../Helpers/unittests/RangeUnitTest.hpp
27
28check_PROGRAMS += $(TESTS)
29noinst_PROGRAMS += $(TESTS)
30
31AssertUnitTest_SOURCES = UnitTestMain.cpp \
32 ../Helpers/unittests/AssertUnitTest.cpp \
33 ../Helpers/unittests/AssertUnitTest.hpp
34#nodist_AssertUnitTest_SOURCES =
35AssertUnitTest_LDADD = \
36 ../Helpers/libcodepatterns-Helpers-debug.la
37
38ChronosUnitTest_SOURCES = UnitTestMain.cpp \
39 ../Helpers/unittests/ChronosUnitTest.cpp \
40 ../Helpers/unittests/ChronosUnitTest.hpp \
41 ../Helpers/unittests/stubs/InfoStub.cpp
42nodist_ChronosUnitTest_SOURCES = \
43 $(top_srcdir)/src/CodePatterns/Assert.hpp \
44 $(top_srcdir)/src/CodePatterns/MemDebug.hpp \
45 $(top_srcdir)/src/CodePatterns/Chronos.hpp \
46 $(top_srcdir)/src/CodePatterns/Info.hpp
47ChronosUnitTest_LDADD = \
48 ../Helpers/libcodepatterns-Helpers-debug.la \
49 $(LIBRT)
50
51InfoUnitTest_SOURCES = UnitTestMain.cpp \
52 ../Helpers/unittests/InfoUnitTest.cpp \
53 ../Helpers/unittests/InfoUnitTest.hpp \
54 ../Helpers/unittests/stubs/ChronosStub.cpp \
55 ../Helpers/unittests/stubs/errorloggerStub.cpp \
56 ../Helpers/unittests/stubs/LogStub.cpp \
57 ../Helpers/unittests/stubs/loggerStub.cpp
58nodist_InfoUnitTest_SOURCES = \
59 $(top_srcdir)/src/CodePatterns/Assert.hpp \
60 $(top_srcdir)/src/CodePatterns/Chronos.hpp \
61 $(top_srcdir)/src/CodePatterns/errorlogger.hpp \
62 $(top_srcdir)/src/CodePatterns/Info.hpp \
63 $(top_srcdir)/src/CodePatterns/Log.hpp \
64 $(top_srcdir)/src/CodePatterns/logger.hpp \
65 $(top_srcdir)/src/CodePatterns/MemDebug.hpp
66InfoUnitTest_LDADD = \
67 ../Helpers/libcodepatterns-Helpers-debug.la
68
69IteratorAdaptorsUnitTest_SOURCES = UnitTestMain.cpp \
70 ../Helpers/unittests/IteratorAdaptorsUnitTest.cpp \
71 ../Helpers/unittests/IteratorAdaptorsUnitTest.hpp
72nodist_IteratorAdaptorsUnitTest_SOURCES = \
73 $(top_srcdir)/src/CodePatterns/IteratorAdaptors.hpp
74IteratorAdaptorsUnitTest_LDADD = \
75 ../Helpers/libcodepatterns-Helpers-debug.la
76
77LogUnitTest_SOURCES = UnitTestMain.cpp \
78 ../Helpers/unittests/LogUnitTest.cpp \
79 ../Helpers/unittests/LogUnitTest.hpp
80nodist_LogUnitTest_SOURCES = \
81 $(top_srcdir)/src/CodePatterns/Assert.hpp \
82 $(top_srcdir)/src/CodePatterns/errorlogger.hpp \
83 $(top_srcdir)/src/CodePatterns/Log.hpp \
84 $(top_srcdir)/src/CodePatterns/logger.hpp \
85 $(top_srcdir)/src/CodePatterns/MemDebug.hpp
86LogUnitTest_LDADD = \
87 ../Helpers/libcodepatterns-Helpers-debug.la
88
89RangeUnitTest_SOURCES = UnitTestMain.cpp \
90 ../Helpers/unittests/RangeUnitTest.cpp \
91 ../Helpers/unittests/RangeUnitTest.hpp
92#nodist_RangeUnitTest_SOURCES =
93RangeUnitTest_LDADD = \
94 ../Helpers/libcodepatterns-Helpers-debug.la
95
96
97#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracBrowser for help on using the repository browser.