source: molecuilder/src/unittests/Makefile.am@ b7f3f3

Last change on this file since b7f3f3 was edf611, checked in by Frederik Heber <heber@…>, 16 years ago

New Info class that contains a global verbosity level, increased per function call and decreased per exit.

  • the idea is to have the "begin of .." and "end of .." messages in an object that automatically holds the current recursion level and hence may change verbosity accordingly for Logger
  • verbose::DoOutput() checks relative to Info::verbosity now.
  • InfoUnitTest was done and works well.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 2.3 KB
Line 
1INCLUDES = -I$(top_srcdir)/src
2
3AM_LDFLAGS = $(CPPUNIT_LIBS) -ldl
4AM_CXXFLAGS = $(CPPUNIT_CFLAGS)
5
6TESTS = ActOnAllUnitTest AnalysisBondsUnitTests AnalysisCorrelationToPointUnitTest AnalysisCorrelationToSurfaceUnitTest AnalysisPairCorrelationUnitTest BondGraphUnitTest InfoUnitTest ListOfBondsUnitTest LogUnitTest MemoryUsageObserverUnitTest MemoryAllocatorUnitTest StackClassUnitTest VectorUnitTest
7check_PROGRAMS = $(TESTS)
8noinst_PROGRAMS = $(TESTS)
9
10ActOnAllUnitTest_SOURCES = ../test/ActOnAllTest.hpp ActOnAllUnitTest.cpp ActOnAllUnitTest.hpp
11ActOnAllUnitTest_LDADD = ../libmolecuilder.a
12
13AnalysisBondsUnitTests_SOURCES = analysisbondsunittest.cpp analysisbondsunittest.hpp
14AnalysisBondsUnitTests_LDADD = ../libmolecuilder.a
15
16AnalysisCorrelationToPointUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToPointUnitTest.cpp AnalysisCorrelationToPointUnitTest.hpp
17AnalysisCorrelationToPointUnitTest_LDADD = ../libmolecuilder.a
18
19AnalysisCorrelationToSurfaceUnitTest_SOURCES = analysis_correlation.hpp AnalysisCorrelationToSurfaceUnitTest.cpp AnalysisCorrelationToSurfaceUnitTest.hpp
20AnalysisCorrelationToSurfaceUnitTest_LDADD = ../libmolecuilder.a
21
22AnalysisPairCorrelationUnitTest_SOURCES = analysis_correlation.hpp AnalysisPairCorrelationUnitTest.cpp AnalysisPairCorrelationUnitTest.hpp
23AnalysisPairCorrelationUnitTest_LDADD = ../libmolecuilder.a
24
25BondGraphUnitTest_SOURCES = bondgraphunittest.cpp bondgraphunittest.hpp
26BondGraphUnitTest_LDADD = ../libmolecuilder.a
27
28InfoUnitTest_SOURCES = infounittest.cpp infounittest.hpp
29InfoUnitTest_LDADD = ../libmolecuilder.a
30
31ListOfBondsUnitTest_SOURCES = listofbondsunittest.cpp listofbondsunittest.hpp
32ListOfBondsUnitTest_LDADD = ../libmolecuilder.a
33
34LogUnitTest_SOURCES = logunittest.cpp logunittest.hpp
35LogUnitTest_LDADD = ../libmolecuilder.a
36
37MemoryAllocatorUnitTest_SOURCES = memoryallocatorunittest.cpp memoryallocatorunittest.hpp
38MemoryAllocatorUnitTest_LDADD = ../libmolecuilder.a
39
40MemoryUsageObserverUnitTest_SOURCES = memoryusageobserverunittest.cpp memoryusageobserverunittest.hpp
41MemoryUsageObserverUnitTest_LDADD = ../libmolecuilder.a
42
43StackClassUnitTest_SOURCES = stackclassunittest.cpp stackclassunittest.hpp
44StackClassUnitTest_LDADD = ../libmolecuilder.a
45
46VectorUnitTest_SOURCES = vectorunittest.cpp vectorunittest.hpp
47VectorUnitTest_LDADD = ../libmolecuilder.a
48
49
50#AUTOMAKE_OPTIONS = parallel-tests
51
Note: See TracBrowser for help on using the repository browser.