Changeset 4d9c01 for src/unittests


Ignore:
Timestamp:
Feb 5, 2010, 2:59:41 PM (15 years ago)
Author:
Tillmann Crueger <crueger@…>
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:
d346b6
Parents:
442218
git-author:
Tillmann Crueger <crueger@…> (02/05/10 14:53:21)
git-committer:
Tillmann Crueger <crueger@…> (02/05/10 14:59:41)
Message:

Fixed some problems with the usage of Boost::threads

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/unittests/Makefile.am

    r442218 r4d9c01  
    3535noinst_PROGRAMS = $(TESTS)
    3636
     37GSLLIBS = ../libgslwrapper.a
     38ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
     39
    3740ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
    38 ActOnAllUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     41ActOnAllUnitTest_LDADD = ${ALLLIBS}
    3942
    4043AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
    41 AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     44AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
    4245
    4346AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
    44 AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     47AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
    4548
    4649AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
    47 AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     50AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
    4851
    4952AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
    50 AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     53AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
    5154
    5255BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
    53 BondGraphUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     56BondGraphUnitTest_LDADD = ${ALLLIBS}
    5457
    5558GSLMatrixSymmetricUnitTest_SOURCES = gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
    56 GSLMatrixSymmetricUnitTest_LDADD = ../libgslwrapper.a
     59GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
    5760
    5861GSLMatrixUnitTest_SOURCES = gslmatrixunittest.cpp gslmatrixunittest.hpp
    59 GSLMatrixUnitTest_LDADD = ../libgslwrapper.a
     62GSLMatrixUnitTest_LDADD = ${GSLLIBS}
    6063
    6164GSLVectorUnitTest_SOURCES = gslvectorunittest.cpp gslvectorunittest.hpp
    62 GSLVectorUnitTest_LDADD = ../libgslwrapper.a
     65GSLVectorUnitTest_LDADD = ${GSLLIBS}
    6366
    6467InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
    65 InfoUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     68InfoUnitTest_LDADD = ${ALLLIBS}
    6669
    6770LinearSystemOfEquationsUnitTest_SOURCES = linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
    68 LinearSystemOfEquationsUnitTest_LDADD = ../libgslwrapper.a ../libmolecuilder.a
     71LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
    6972
    7073ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
    71 ListOfBondsUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     74ListOfBondsUnitTest_LDADD = ${ALLLIBS}
    7275
    7376LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
    74 LogUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     77LogUnitTest_LDADD = ${ALLLIBS}
    7578
    7679MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
    77 MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     80MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
    7881
    7982MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
    80 MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     83MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
    8184
    8285StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
    83 StackClassUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     86StackClassUnitTest_LDADD = ${ALLLIBS}
    8487
    8588TesselationUnitTest_SOURCES = tesselationunittest.cpp tesselationunittest.hpp
    86 TesselationUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     89TesselationUnitTest_LDADD = ${ALLLIBS}
    8790
    8891Tesselation_BoundaryTriangleUnitTest_SOURCES = tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
    89 Tesselation_BoundaryTriangleUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     92Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
    9093
    9194Tesselation_InOutsideUnitTest_SOURCES = tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
    92 Tesselation_InOutsideUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     95Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
    9396
    9497VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
    95 VectorUnitTest_LDADD = ../libmolecuilder.a ../libgslwrapper.a
     98VectorUnitTest_LDADD = ${ALLLIBS}
    9699
    97100ActionSequenceTest_SOURCES = ActionSequenceTest.cpp ActionSequenceTest.hpp
    98 ActionSequenceTest_LDADD = ../libmolecuilder.a
     101ActionSequenceTest_LDADD = ${ALLLIBS}
    99102
    100103ObserverTest_SOURCES = ObserverTest.cpp ObserverTest.hpp
    101 ObserverTest_LDADD = ../libmolecuilder.a
     104ObserverTest_LDADD = ${ALLLIBS}
    102105
    103106CacheableTest_SOURCES = CacheableTest.cpp CacheableTest.hpp
    104 CacheableTest_LDADD = ../libmolecuilder.a
     107CacheableTest_LDADD = ${ALLLIBS}
    105108
    106109#AUTOMAKE_OPTIONS = parallel-tests
Note: See TracChangeset for help on using the changeset viewer.