[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 \
|
---|
[63c1f6] | 32 | ${MENUTESTS}
|
---|
[04b6f9] | 33 |
|
---|
[9fb860] | 34 |
|
---|
[63c1f6] | 35 | check_PROGRAMS = $(TESTS)
|
---|
[9b6b2f] | 36 | noinst_PROGRAMS = $(TESTS) TestRunner
|
---|
[b9907c] | 37 |
|
---|
[4d9c01] | 38 | GSLLIBS = ../libgslwrapper.a
|
---|
| 39 | ALLLIBS = ../libmolecuilder.a ${GSLLIBS} $(BOOST_LIB) ${BOOST_THREAD_LIB}
|
---|
| 40 |
|
---|
[9b6b2f] | 41 | TESTSOURCES = \
|
---|
| 42 | ActOnAllUnitTest.cpp \
|
---|
| 43 | analysisbondsunittest.cpp \
|
---|
| 44 | AnalysisCorrelationToPointUnitTest.cpp \
|
---|
| 45 | AnalysisCorrelationToSurfaceUnitTest.cpp \
|
---|
| 46 | AnalysisPairCorrelationUnitTest.cpp \
|
---|
| 47 | bondgraphunittest.cpp \
|
---|
| 48 | gslmatrixsymmetricunittest.cpp \
|
---|
| 49 | gslmatrixunittest.cpp \
|
---|
| 50 | gslvectorunittest.cpp \
|
---|
| 51 | infounittest.cpp \
|
---|
| 52 | linearsystemofequationsunittest.cpp \
|
---|
| 53 | listofbondsunittest.cpp \
|
---|
| 54 | logunittest.cpp \
|
---|
| 55 | memoryallocatorunittest.cpp \
|
---|
| 56 | memoryusageobserverunittest.cpp \
|
---|
| 57 | stackclassunittest.cpp \
|
---|
| 58 | tesselationunittest.cpp \
|
---|
| 59 | tesselation_boundarytriangleunittest.cpp \
|
---|
| 60 | tesselation_insideoutsideunittest.cpp \
|
---|
| 61 | vectorunittest.cpp \
|
---|
| 62 | ActionSequenceTest.cpp \
|
---|
| 63 | ObserverTest.cpp \
|
---|
| 64 | CacheableTest.cpp \
|
---|
| 65 | DescriptorUnittest.cpp
|
---|
| 66 |
|
---|
| 67 | TESTHEADERS = \
|
---|
| 68 | analysis_correlation.hpp
|
---|
| 69 |
|
---|
| 70 | ActOnAllUnitTest_SOURCES = UnitTestMain.cpp ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
|
---|
[4d9c01] | 71 | ActOnAllUnitTest_LDADD = ${ALLLIBS}
|
---|
[c111db] | 72 |
|
---|
[9b6b2f] | 73 | AnalysisBondsUnitTests_SOURCES = UnitTestMain.cpp analysisbondsunittest.cpp analysisbondsunittest.hpp
|
---|
[4d9c01] | 74 | AnalysisBondsUnitTests_LDADD = ${ALLLIBS}
|
---|
[96c961] | 75 |
|
---|
[9b6b2f] | 76 | AnalysisCorrelationToPointUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
|
---|
[4d9c01] | 77 | AnalysisCorrelationToPointUnitTest_LDADD = ${ALLLIBS}
|
---|
[c4d4df] | 78 |
|
---|
[9b6b2f] | 79 | AnalysisCorrelationToSurfaceUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
|
---|
[4d9c01] | 80 | AnalysisCorrelationToSurfaceUnitTest_LDADD = ${ALLLIBS}
|
---|
[c4d4df] | 81 |
|
---|
[9b6b2f] | 82 | AnalysisPairCorrelationUnitTest_SOURCES = UnitTestMain.cpp analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
|
---|
[4d9c01] | 83 | AnalysisPairCorrelationUnitTest_LDADD = ${ALLLIBS}
|
---|
[c111db] | 84 |
|
---|
[9b6b2f] | 85 | BondGraphUnitTest_SOURCES = UnitTestMain.cpp bondgraphunittest.cpp bondgraphunittest.hpp
|
---|
[4d9c01] | 86 | BondGraphUnitTest_LDADD = ${ALLLIBS}
|
---|
[46ea3b] | 87 |
|
---|
[9b6b2f] | 88 | GSLMatrixSymmetricUnitTest_SOURCES = UnitTestMain.cpp gslmatrixsymmetricunittest.cpp gslmatrixsymmetricunittest.hpp
|
---|
[4d9c01] | 89 | GSLMatrixSymmetricUnitTest_LDADD = ${GSLLIBS}
|
---|
[9fb860] | 90 |
|
---|
[9b6b2f] | 91 | GSLMatrixUnitTest_SOURCES = UnitTestMain.cpp gslmatrixunittest.cpp gslmatrixunittest.hpp
|
---|
[4d9c01] | 92 | GSLMatrixUnitTest_LDADD = ${GSLLIBS}
|
---|
[9fb860] | 93 |
|
---|
[9b6b2f] | 94 | GSLVectorUnitTest_SOURCES = UnitTestMain.cpp gslvectorunittest.cpp gslvectorunittest.hpp
|
---|
[4d9c01] | 95 | GSLVectorUnitTest_LDADD = ${GSLLIBS}
|
---|
[46ea3b] | 96 |
|
---|
[9b6b2f] | 97 | InfoUnitTest_SOURCES = UnitTestMain.cpp infounittest.cpp infounittest.hpp
|
---|
[4d9c01] | 98 | InfoUnitTest_LDADD = ${ALLLIBS}
|
---|
[8725ed] | 99 |
|
---|
[9b6b2f] | 100 | LinearSystemOfEquationsUnitTest_SOURCES = UnitTestMain.cpp linearsystemofequationsunittest.cpp linearsystemofequationsunittest.hpp
|
---|
[4d9c01] | 101 | LinearSystemOfEquationsUnitTest_LDADD = ${ALLLIBS}
|
---|
[8725ed] | 102 |
|
---|
[9b6b2f] | 103 | ListOfBondsUnitTest_SOURCES = UnitTestMain.cpp listofbondsunittest.cpp listofbondsunittest.hpp
|
---|
[4d9c01] | 104 | ListOfBondsUnitTest_LDADD = ${ALLLIBS}
|
---|
[266237] | 105 |
|
---|
[9b6b2f] | 106 | LogUnitTest_SOURCES = UnitTestMain.cpp logunittest.cpp logunittest.hpp
|
---|
[4d9c01] | 107 | LogUnitTest_LDADD = ${ALLLIBS}
|
---|
[7326b2] | 108 |
|
---|
[9b6b2f] | 109 | MemoryAllocatorUnitTest_SOURCES = UnitTestMain.cpp memoryallocatorunittest.cpp memoryallocatorunittest.hpp
|
---|
[4d9c01] | 110 | MemoryAllocatorUnitTest_LDADD = ${ALLLIBS}
|
---|
[be90f1] | 111 |
|
---|
[9b6b2f] | 112 | MemoryUsageObserverUnitTest_SOURCES = UnitTestMain.cpp memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
|
---|
[4d9c01] | 113 | MemoryUsageObserverUnitTest_LDADD = ${ALLLIBS}
|
---|
[831a14] | 114 |
|
---|
[9b6b2f] | 115 | StackClassUnitTest_SOURCES = UnitTestMain.cpp stackclassunittest.cpp stackclassunittest.hpp
|
---|
[4d9c01] | 116 | StackClassUnitTest_LDADD = ${ALLLIBS}
|
---|
[d96277] | 117 |
|
---|
[9b6b2f] | 118 | TesselationUnitTest_SOURCES = UnitTestMain.cpp tesselationunittest.cpp tesselationunittest.hpp
|
---|
[4d9c01] | 119 | TesselationUnitTest_LDADD = ${ALLLIBS}
|
---|
[c15ca2] | 120 |
|
---|
[9b6b2f] | 121 | Tesselation_BoundaryTriangleUnitTest_SOURCES = UnitTestMain.cpp tesselation_boundarytriangleunittest.cpp tesselation_boundarytriangleunittest.hpp
|
---|
[4d9c01] | 122 | Tesselation_BoundaryTriangleUnitTest_LDADD = ${ALLLIBS}
|
---|
[e9c677] | 123 |
|
---|
[9b6b2f] | 124 | Tesselation_InOutsideUnitTest_SOURCES = UnitTestMain.cpp tesselation_insideoutsideunittest.cpp tesselation_insideoutsideunittest.hpp
|
---|
[4d9c01] | 125 | Tesselation_InOutsideUnitTest_LDADD = ${ALLLIBS}
|
---|
[d96277] | 126 |
|
---|
[9b6b2f] | 127 | VectorUnitTest_SOURCES = UnitTestMain.cpp vectorunittest.cpp vectorunittest.hpp
|
---|
[4d9c01] | 128 | VectorUnitTest_LDADD = ${ALLLIBS}
|
---|
[d96277] | 129 |
|
---|
[9b6b2f] | 130 | ActionSequenceTest_SOURCES = UnitTestMain.cpp ../../../TestRunnerClient.hpp ActionSequenceTest.cpp ActionSequenceTest.hpp
|
---|
[4d9c01] | 131 | ActionSequenceTest_LDADD = ${ALLLIBS}
|
---|
[d96277] | 132 |
|
---|
[9b6b2f] | 133 | ObserverTest_SOURCES = UnitTestMain.cpp ObserverTest.cpp ObserverTest.hpp
|
---|
[4d9c01] | 134 | ObserverTest_LDADD = ${ALLLIBS}
|
---|
[63c1f6] | 135 |
|
---|
[9b6b2f] | 136 | CacheableTest_SOURCES = UnitTestMain.cpp CacheableTest.cpp CacheableTest.hpp
|
---|
[4d9c01] | 137 | CacheableTest_LDADD = ${ALLLIBS}
|
---|
[e3c8b4] | 138 |
|
---|
[9b6b2f] | 139 | DescriptorUnittest_SOURCES = UnitTestMain.cpp DescriptorUnittest.cpp DescriptorUnittest.hpp
|
---|
| 140 | DescriptorUnittest_LDADD = ${ALLLIBS}
|
---|
| 141 |
|
---|
| 142 | TestRunner_SOURCES = TestRunnerMain.cpp $(TESTSOURCES) $(TESTHEADERS)
|
---|
| 143 | TestRunner_LDADD = ${ALLLIBS}
|
---|
[7a1ce5] | 144 |
|
---|
[831a14] | 145 | #AUTOMAKE_OPTIONS = parallel-tests
|
---|
[7326b2] | 146 |
|
---|