Changeset 2561df for src/unittests/Makefile.am
- Timestamp:
- Feb 26, 2010, 2:11:14 PM (15 years ago)
- Branches:
- 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
- Children:
- 6a661c
- Parents:
- cbf01e (diff), a28a83 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/Makefile.am
rcbf01e r2561df 37 37 38 38 check_PROGRAMS = $(TESTS) 39 noinst_PROGRAMS = $(TESTS) 39 noinst_PROGRAMS = $(TESTS) TestRunner 40 40 41 41 GSLLIBS = ../libgslwrapper.a 42 42 ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB} 43 43 44 ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp 44 TESTSOURCES = \ 45 ActOnAllUnitTest.cpp \ 46 analysisbondsunittest.cpp \ 47 AnalysisCorrelationToPointUnitTest.cpp \ 48 AnalysisCorrelationToSurfaceUnitTest.cpp \ 49 AnalysisPairCorrelationUnitTest.cpp \ 50 bondgraphunittest.cpp \ 51 gslmatrixsymmetricunittest.cpp \ 52 gslmatrixunittest.cpp \ 53 gslvectorunittest.cpp \ 54 infounittest.cpp \ 55 linearsystemofequationsunittest.cpp \ 56 listofbondsunittest.cpp \ 57 logunittest.cpp \ 58 memoryallocatorunittest.cpp \ 59 memoryusageobserverunittest.cpp \ 60 stackclassunittest.cpp \ 61 tesselationunittest.cpp \ 62 tesselation_boundarytriangleunittest.cpp \ 63 tesselation_insideoutsideunittest.cpp \ 64 vectorunittest.cpp \ 65 ObserverTest.cpp \ 66 CacheableTest.cpp \ 67 DescriptorUnittest.cpp \ 68 manipulateAtomsTest.cpp \ 69 atomsCalculationTest.cpp \ 70 ActionSequenceTest.cpp 71 72 TESTHEADERS = \ 73 analysis_correlation.hpp 74 75 ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp 45 76 ActOnAllUnitTest_LDADD = ${ALLLIBS} 46 77 47 AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp78 AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp 48 79 AnalysisBondsUnitTests_LDADD = ${ALLLIBS} 49 80 50 AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp81 AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp 51 82 AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS} 52 83 53 AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp84 AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp 54 85 AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS} 55 86 56 AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp87 AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp 57 88 AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS} 58 89 59 BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp90 BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp 60 91 BondGraphUnitTest_LDADD = ${ALLLIBS} 61 92 62 GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp93 GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp 63 94 GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS} 64 95 65 GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp96 GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp 66 97 GSLMatrixUnitTest_LDADD = ${GSLLIBS} 67 98 68 GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp99 GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp 69 100 GSLVectorUnitTest_LDADD = ${GSLLIBS} 70 101 71 InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp102 InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp 72 103 InfoUnitTest_LDADD = ${ALLLIBS} 73 104 74 LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp105 LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp 75 106 LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS} 76 107 77 ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp108 ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp 78 109 ListOfBondsUnitTest_LDADD = ${ALLLIBS} 79 110 80 LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp111 LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp 81 112 LogUnitTest_LDADD = ${ALLLIBS} 82 113 83 MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp114 MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp 84 115 MemoryAllocatorUnitTest_LDADD = ${ALLLIBS} 85 116 86 MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp117 MemoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp 87 118 MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS} 88 119 89 StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp120 StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp 90 121 StackClassUnitTest_LDADD = ${ALLLIBS} 91 122 92 TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp123 TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp 93 124 TesselationUnitTest_LDADD = ${ALLLIBS} 94 125 95 Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp126 Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp 96 127 Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS} 97 128 98 Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp129 Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp 99 130 Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS} 100 131 101 VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp132 VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp 102 133 VectorUnitTest_LDADD = ${ALLLIBS} 103 134 104 ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp105 ActionSequenceTest_LDADD = ${ALLLIBS} ../libmenu.a135 ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp 136 ActionSequenceTest_LDADD = ${ALLLIBS} 106 137 107 ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp138 ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp 108 139 ObserverTest_LDADD = ${ALLLIBS} 109 140 110 CacheableTest_SOURCES = CacheableTest.cpp CacheableTest.hpp141 CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp 111 142 CacheableTest_LDADD = ${ALLLIBS} 112 143 113 DescriptorUnittest_SOURCES = DescriptorUnittest.cpp DescriptorUnittest.hpp144 DescriptorUnittest_SOURCES = UnitTestMain.cpp DescriptorUnittest.cpp DescriptorUnittest.hpp 114 145 DescriptorUnittest_LDADD = ${ALLLIBS} 115 146 116 manipulateAtomsTest_SOURCES = manipulateAtomsTest.cpp manipulateAtomsTest.hpp147 manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp 117 148 manipulateAtomsTest_LDADD = ${ALLLIBS} 118 149 119 atomsCalculationTest_SOURCES = atomsCalculationTest.cpp atomsCalculationTest.hpp150 atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp 120 151 atomsCalculationTest_LDADD = ${ALLLIBS} 152 153 TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS) 154 TestRunner_LDADD = ${ALLLIBS} 121 155 122 156 #AUTOMAKE_OPTIONS = parallel-tests
Note:
See TracChangeset
for help on using the changeset viewer.