Changeset 5f612ee for src/unittests/Makefile.am
- Timestamp:
- Apr 27, 2010, 2:25:42 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:
- 632bc3
- Parents:
- 13d5a9 (diff), c695c9 (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
r13d5a9 r5f612ee 4 4 AM_CXXFLAGS = $(CPPUNIT_CFLAGS) 5 5 6 MENUTESTS = ActionSequenceTest 6 MENUTESTS = \ 7 ActionSequenceTest 7 8 8 9 TESTS = \ … … 16 17 BondGraphUnitTest \ 17 18 CacheableTest \ 19 CountBondsUnitTest \ 18 20 GSLMatrixSymmetricUnitTest \ 19 21 GSLMatrixUnitTest \ … … 21 23 InfoUnitTest \ 22 24 LinearSystemOfEquationsUnitTest \ 25 LinkedCellUnitTest \ 23 26 ListOfBondsUnitTest \ 24 27 LogUnitTest \ … … 36 39 ${MENUTESTS} 37 40 38 39 40 41 41 42 check_PROGRAMS = $(TESTS) … … 56 57 bondgraphunittest.cpp \ 57 58 CacheableTest.cpp \ 59 CountBondsUnitTest.cpp \ 58 60 gslmatrixsymmetricunittest.cpp \ 59 61 gslmatrixunittest.cpp \ … … 61 63 infounittest.cpp \ 62 64 linearsystemofequationsunittest.cpp \ 65 LinkedCellUnitTest.cpp \ 63 66 listofbondsunittest.cpp \ 64 67 logunittest.cpp \ … … 76 79 77 80 TESTHEADERS = \ 78 analysis_correlation.hpp 81 ActOnAllUnitTest.hpp \ 82 ActionSequenceTest.hpp \ 83 analysisbondsunittest.hpp \ 84 AnalysisCorrelationToPointUnitTest.hpp \ 85 AnalysisCorrelationToSurfaceUnitTest.hpp \ 86 AnalysisPairCorrelationUnitTest.hpp \ 87 AtomDescriptorTest.hpp \ 88 atomsCalculationTest.hpp \ 89 bondgraphunittest.hpp \ 90 CacheableTest.hpp \ 91 CountBondsUnitTest.hpp \ 92 gslmatrixsymmetricunittest.hpp \ 93 gslmatrixunittest.hpp \ 94 gslvectorunittest.hpp \ 95 infounittest.hpp \ 96 linearsystemofequationsunittest.hpp \ 97 LinkedCellUnitTest.hpp \ 98 listofbondsunittest.hpp \ 99 logunittest.hpp \ 100 manipulateAtomsTest.hpp \ 101 memoryallocatorunittest.hpp \ 102 memoryusageobserverunittest.hpp \ 103 MoleculeDescriptorTest.hpp \ 104 ObserverTest.hpp \ 105 SingletonTest.hpp \ 106 stackclassunittest.hpp \ 107 tesselationunittest.hpp \ 108 tesselation_boundarytriangleunittest.hpp \ 109 tesselation_insideoutsideunittest.hpp \ 110 vectorunittest.hpp 111 79 112 80 113 ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp … … 99 132 BondGraphUnitTest_LDADD = ${ALLLIBS} 100 133 134 CountBondsUnitTest_SOURCES = UnitTestMain.cpp CountBondsUnitTest.cpp CountBondsUnitTest.hpp 135 CountBondsUnitTest_LDADD = ${ALLLIBS} 136 101 137 GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp 102 138 GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS} … … 114 150 LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS} 115 151 152 LinkedCellUnitTest_SOURCES = UnitTestMain.cpp LinkedCellUnitTest.cpp LinkedCellUnitTest.hpp 153 LinkedCellUnitTest_LDADD = ${ALLLIBS} 154 116 155 ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp 117 156 ListOfBondsUnitTest_LDADD = ${ALLLIBS}
Note:
See TracChangeset
for help on using the changeset viewer.