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