| 1 | INCLUDES = -I$(top_srcdir)/src
|
|---|
| 2 |
|
|---|
| 3 | AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
|
|---|
| 4 | AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
|
|---|
| 5 |
|
|---|
| 6 | MENUTESTS = ActionSequenceTest
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 | TESTS = \
|
|---|
| 10 | ActOnAllUnitTest \
|
|---|
| 11 | AnalysisBondsUnitTests \
|
|---|
| 12 | AnalysisCorrelationToPointUnitTest \
|
|---|
| 13 | AnalysisCorrelationToSurfaceUnitTest \
|
|---|
| 14 | AnalysisPairCorrelationUnitTest \
|
|---|
| 15 | atomsCalculationTest \
|
|---|
| 16 | AtomDescriptorTest \
|
|---|
| 17 | BondGraphUnitTest \
|
|---|
| 18 | CacheableTest \
|
|---|
| 19 | GSLMatrixSymmetricUnitTest \
|
|---|
| 20 | GSLMatrixUnitTest \
|
|---|
| 21 | GSLVectorUnitTest \
|
|---|
| 22 | InfoUnitTest \
|
|---|
| 23 | LinearSystemOfEquationsUnitTest \
|
|---|
| 24 | ListOfBondsUnitTest \
|
|---|
| 25 | LogUnitTest \
|
|---|
| 26 | manipulateAtomsTest \
|
|---|
| 27 | MemoryUsageObserverUnitTest \
|
|---|
| 28 | MemoryAllocatorUnitTest \
|
|---|
| 29 | MoleculeDescriptorTest \
|
|---|
| 30 | ObserverTest \
|
|---|
| 31 | SingletonTest \
|
|---|
| 32 | StackClassUnitTest \
|
|---|
| 33 | TesselationUnitTest \
|
|---|
| 34 | Tesselation_BoundaryTriangleUnitTest \
|
|---|
| 35 | Tesselation_InOutsideUnitTest \
|
|---|
| 36 | VectorUnitTest \
|
|---|
| 37 | ${MENUTESTS}
|
|---|
| 38 |
|
|---|
| 39 |
|
|---|
| 40 | check_PROGRAMS = $(TESTS)
|
|---|
| 41 | noinst_PROGRAMS = $(TESTS) TestRunner
|
|---|
| 42 |
|
|---|
| 43 | GSLLIBS = ../libgslwrapper.a
|
|---|
| 44 | ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
|---|
| 45 |
|
|---|
| 46 | TESTSOURCES = \
|
|---|
| 47 | ActOnAllUnitTest.cpp \
|
|---|
| 48 | ActionSequenceTest.cpp \
|
|---|
| 49 | analysisbondsunittest.cpp \
|
|---|
| 50 | AnalysisCorrelationToPointUnitTest.cpp \
|
|---|
| 51 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
|---|
| 52 | AnalysisPairCorrelationUnitTest.cpp \
|
|---|
| 53 | AtomDescriptorTest.cpp \
|
|---|
| 54 | atomsCalculationTest.cpp \
|
|---|
| 55 | bondgraphunittest.cpp \
|
|---|
| 56 | CacheableTest.cpp \
|
|---|
| 57 | gslmatrixsymmetricunittest.cpp \
|
|---|
| 58 | gslmatrixunittest.cpp \
|
|---|
| 59 | gslvectorunittest.cpp \
|
|---|
| 60 | infounittest.cpp \
|
|---|
| 61 | linearsystemofequationsunittest.cpp \
|
|---|
| 62 | listofbondsunittest.cpp \
|
|---|
| 63 | logunittest.cpp \
|
|---|
| 64 | manipulateAtomsTest.cpp \
|
|---|
| 65 | memoryallocatorunittest.cpp \
|
|---|
| 66 | memoryusageobserverunittest.cpp \
|
|---|
| 67 | MoleculeDescriptorTest.cpp \
|
|---|
| 68 | ObserverTest.cpp \
|
|---|
| 69 | SingletonTest.cpp \
|
|---|
| 70 | stackclassunittest.cpp \
|
|---|
| 71 | tesselationunittest.cpp \
|
|---|
| 72 | tesselation_boundarytriangleunittest.cpp \
|
|---|
| 73 | tesselation_insideoutsideunittest.cpp \
|
|---|
| 74 | vectorunittest.cpp
|
|---|
| 75 |
|
|---|
| 76 | TESTHEADERS = \
|
|---|
| 77 | analysis_correlation.hpp
|
|---|
| 78 |
|
|---|
| 79 | ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
|---|
| 80 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 81 |
|
|---|
| 82 | AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
|
|---|
| 83 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
|---|
| 84 |
|
|---|
| 85 | AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
|---|
| 86 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 87 |
|
|---|
| 88 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
|---|
| 89 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 90 |
|
|---|
| 91 | AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
|---|
| 92 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 93 |
|
|---|
| 94 | atomsCalculationTest_SOURCES = UnitTestMain.cpp atomsCalculationTest.cpp atomsCalculationTest.hpp
|
|---|
| 95 | atomsCalculationTest_LDADD = ${ALLLIBS}
|
|---|
| 96 |
|
|---|
| 97 | BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
|
|---|
| 98 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 99 |
|
|---|
| 100 | GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
|---|
| 101 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 102 |
|
|---|
| 103 | GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
|
|---|
| 104 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 105 |
|
|---|
| 106 | GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
|
|---|
| 107 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
|---|
| 108 |
|
|---|
| 109 | InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
|
|---|
| 110 | InfoUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 111 |
|
|---|
| 112 | LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
|---|
| 113 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 114 |
|
|---|
| 115 | ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
|
|---|
| 116 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 117 |
|
|---|
| 118 | LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
|
|---|
| 119 | LogUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 120 |
|
|---|
| 121 | MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
|---|
| 122 | MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 123 |
|
|---|
| 124 | MemoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
|---|
| 125 | MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 126 |
|
|---|
| 127 | MoleculeDescriptorTest_SOURCES = UnitTestMain.cpp MoleculeDescriptorTest.cpp MoleculeDescriptorTest.hpp
|
|---|
| 128 | MoleculeDescriptorTest_LDADD = ${ALLLIBS}
|
|---|
| 129 |
|
|---|
| 130 | SingletonTest_SOURCES = UnitTestMain.cpp SingletonTest.cpp SingletonTest.hpp
|
|---|
| 131 | SingletonTest_LDADD = $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
|---|
| 132 |
|
|---|
| 133 | StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
|
|---|
| 134 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 135 |
|
|---|
| 136 | TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
|
|---|
| 137 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 138 |
|
|---|
| 139 | Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
|---|
| 140 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 141 |
|
|---|
| 142 | Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
|---|
| 143 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 144 |
|
|---|
| 145 | VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
|
|---|
| 146 | VectorUnitTest_LDADD = ${ALLLIBS}
|
|---|
| 147 |
|
|---|
| 148 | ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp
|
|---|
| 149 | ActionSequenceTest_LDADD = ${ALLLIBS}
|
|---|
| 150 |
|
|---|
| 151 | ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
|
|---|
| 152 | ObserverTest_LDADD = ${ALLLIBS}
|
|---|
| 153 |
|
|---|
| 154 | CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
|
|---|
| 155 | CacheableTest_LDADD = ${ALLLIBS}
|
|---|
| 156 |
|
|---|
| 157 | AtomDescriptorTest_SOURCES = UnitTestMain.cpp AtomDescriptorTest.cpp AtomDescriptorTest.hpp
|
|---|
| 158 | AtomDescriptorTest_LDADD = ${ALLLIBS}
|
|---|
| 159 |
|
|---|
| 160 | manipulateAtomsTest_SOURCES = UnitTestMain.cpp manipulateAtomsTest.cpp manipulateAtomsTest.hpp
|
|---|
| 161 | manipulateAtomsTest_LDADD = ${ALLLIBS}
|
|---|
| 162 |
|
|---|
| 163 | TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
|
|---|
| 164 | TestRunner_LDADD = ${ALLLIBS}
|
|---|
| 165 |
|
|---|
| 166 | #AUTOMAKE_OPTIONS = parallel-tests
|
|---|
| 167 |
|
|---|