Changeset e6fdbe
- Timestamp:
- Feb 26, 2010, 10:02:12 AM (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:
- 706f9b, a1510d
- Parents:
- 5e5283
- Location:
- src/unittests
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
src/unittests/AnalysisCorrelationToPointUnitTest.cpp
r5e5283 re6fdbe 24 24 #include "periodentafel.hpp" 25 25 #include "tesselation.hpp" 26 #include "World.hpp" 26 27 27 28 #ifdef HAVE_TESTRUNNER … … 107 108 delete(tafel); 108 109 // note that element is cleaned by periodentafel 110 World::destroy(); 111 MemoryUsageObserver::purgeInstance(); 112 logger::purgeInstance(); 109 113 }; 110 114 -
src/unittests/AnalysisCorrelationToSurfaceUnitTest.cpp
r5e5283 re6fdbe 24 24 #include "periodentafel.hpp" 25 25 #include "tesselation.hpp" 26 #include "World.hpp" 26 27 27 28 #ifdef HAVE_TESTRUNNER … … 137 138 delete(tafel); 138 139 // note that element is cleaned by periodentafel 140 World::destroy(); 141 MemoryUsageObserver::purgeInstance(); 142 logger::purgeInstance(); 139 143 }; 140 144 -
src/unittests/AnalysisPairCorrelationUnitTest.cpp
r5e5283 re6fdbe 24 24 #include "periodentafel.hpp" 25 25 #include "tesselation.hpp" 26 #include "World.hpp" 26 27 27 28 #ifdef HAVE_TESTRUNNER … … 102 103 delete(tafel); 103 104 // note that element is cleaned by periodentafel 105 World::destroy(); 106 MemoryUsageObserver::purgeInstance(); 107 logger::purgeInstance(); 108 errorLogger::purgeInstance(); 104 109 }; 105 110 -
src/unittests/bondgraphunittest.cpp
r5e5283 re6fdbe 23 23 #include "periodentafel.hpp" 24 24 #include "bondgraphunittest.hpp" 25 #include "World.hpp" 25 26 26 27 #ifdef HAVE_TESTRUNNER … … 104 105 delete(tafel); 105 106 // note that element is cleaned by periodentafel 107 World::destroy(); 108 MemoryUsageObserver::purgeInstance(); 109 logger::purgeInstance(); 106 110 }; 107 111 -
src/unittests/infounittest.cpp
r5e5283 re6fdbe 17 17 #include "info.hpp" 18 18 #include "infounittest.hpp" 19 #include "log.hpp" 19 20 20 21 #ifdef HAVE_TESTRUNNER … … 35 36 void InfoTest::tearDown() 36 37 { 38 logger::purgeInstance(); 37 39 }; 38 40 -
src/unittests/listofbondsunittest.cpp
r5e5283 re6fdbe 21 21 #include "molecule.hpp" 22 22 #include "periodentafel.hpp" 23 #include "World.hpp" 23 24 24 25 #ifdef HAVE_TESTRUNNER … … 84 85 delete(tafel); 85 86 // note that element is cleaned by periodentafel 87 World::destroy(); 88 MemoryUsageObserver::purgeInstance(); 89 logger::purgeInstance(); 86 90 }; 87 91 -
src/unittests/logunittest.cpp
r5e5283 re6fdbe 31 31 void LogTest::tearDown() 32 32 { 33 logger::purgeInstance(); 34 errorLogger::purgeInstance(); 33 35 }; 34 36 -
src/unittests/memoryallocatorunittest.cpp
r5e5283 re6fdbe 13 13 #include "memoryallocatorunittest.hpp" 14 14 #include "helpers.hpp" 15 #include "log.hpp" 15 16 #include "defs.hpp" 16 17 … … 33 34 { 34 35 MemoryUsageObserver::getInstance()->purgeInstance(); 36 logger::purgeInstance(); 35 37 }; 36 38 -
src/unittests/stackclassunittest.cpp
r5e5283 re6fdbe 37 37 Stack->ClearStack(); 38 38 delete(Stack); 39 MemoryUsageObserver::purgeInstance(); 40 logger::purgeInstance(); 39 41 }; 40 42 -
src/unittests/vectorunittest.cpp
r5e5283 re6fdbe 14 14 15 15 #include "defs.hpp" 16 #include "log.hpp" 17 #include "memoryusageobserver.hpp" 16 18 #include "vector.hpp" 17 19 #include "vectorunittest.hpp" … … 39 41 void VectorTest::tearDown() 40 42 { 43 MemoryUsageObserver::purgeInstance(); 44 logger::purgeInstance(); 45 errorLogger::purgeInstance(); 41 46 }; 42 47
Note:
See TracChangeset
for help on using the changeset viewer.