Changeset 0fce81
- Timestamp:
- Apr 6, 2011, 4:05:13 PM (15 years ago)
- Children:
- d2023c
- Parents:
- 09305f
- git-author:
- Frederik Heber <heber@…> (04/06/11 12:16:30)
- git-committer:
- Frederik Heber <heber@…> (04/06/11 16:05:13)
- Files:
-
- 1 added
- 3 edited
- 12 moved
-
Makefile.am (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
src/Helpers/unittests/AssertUnitTest.cpp (moved) (moved from src/unittests/AssertUnitTest.cpp )
-
src/Helpers/unittests/AssertUnitTest.hpp (moved) (moved from src/unittests/AssertUnitTest.hpp )
-
src/Helpers/unittests/ChronosUnitTest.cpp (moved) (moved from src/unittests/ChronosUnitTest.cpp )
-
src/Helpers/unittests/ChronosUnitTest.hpp (moved) (moved from src/unittests/ChronosUnitTest.hpp )
-
src/Helpers/unittests/InfoUnitTest.cpp (moved) (moved from src/unittests/InfoUnitTest.cpp )
-
src/Helpers/unittests/InfoUnitTest.hpp (moved) (moved from src/unittests/InfoUnitTest.hpp )
-
src/Helpers/unittests/IteratorAdaptorsUnitTest.cpp (moved) (moved from src/unittests/IteratorAdaptorsUnitTest.cpp )
-
src/Helpers/unittests/IteratorAdaptorsUnitTest.hpp (moved) (moved from src/unittests/IteratorAdaptorsUnitTest.hpp )
-
src/Helpers/unittests/LogUnitTest.cpp (moved) (moved from src/unittests/LogUnitTest.cpp )
-
src/Helpers/unittests/LogUnitTest.hpp (moved) (moved from src/unittests/LogUnitTest.hpp )
-
src/Helpers/unittests/Makefile.am (added)
-
src/Helpers/unittests/RangeUnitTest.cpp (moved) (moved from src/unittests/RangeUnitTest.cpp )
-
src/Helpers/unittests/RangeUnitTest.hpp (moved) (moved from src/unittests/RangeUnitTest.hpp )
-
src/unittests/Makefile.am (modified) (5 diffs)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.am
r09305f r0fce81 1 1 ACLOCAL_AMFLAGS = -I m4 2 SUBDIRS = src src/ unittests doc2 SUBDIRS = src src/Helpers/unittests src/Patterns/unittests src/unittests doc 3 3 4 4 AUTOMAKE_OPTIONS = subdir-objects -
configure.ac
r09305f r0fce81 59 59 ]) 60 60 AC_CONFIG_FILES([ 61 src/unittests/Makefile 62 src/Helpers/unittests/Makefile 61 63 src/Patterns/unittests/Makefile 62 src/unittests/Makefile63 64 ]) 64 65 AC_OUTPUT -
src/unittests/Makefile.am
r09305f r0fce81 1 1 # PLEASE adhere to the alphabetical ordering in this Makefile! 2 2 # Also indentation by a single tab 3 4 SUBDIRS = \5 ../Patterns/unittests6 3 7 4 INCLUDES = -I$(top_srcdir)/src/Patterns -I$(top_srcdir)/src/Helpers … … 11 8 AM_CPPFLAGS = ${BOOST_CPPFLAGS} 12 9 13 TESTS = \ 14 AssertUnitTest \ 15 ChronosUnitTest \ 16 InfoUnitTest \ 17 IteratorAdaptorsUnitTest \ 18 LogUnitTest \ 19 RangeUnitTest 20 21 check_PROGRAMS = $(TESTS) 22 noinst_PROGRAMS = $(TESTS) TestRunner 10 check_PROGRAMS = 11 noinst_PROGRAMS = TestRunner 23 12 24 13 BOOST_LIB = $(BOOST_MPL_LIB) $(BOOST_PROGRAM_OPTIONS_LIB) $(BOOST_FILESYSTEM_LIB) $(BOOST_SYSTEM_LIB) $(BOOST_THREAD_LIB) … … 28 17 29 18 TESTSOURCES = \ 19 $(top_srcdir)/src/Helpers/unittests/AssertUnitTest.cpp \ 20 $(top_srcdir)/src/Helpers/unittests/ChronosUnitTest.cpp \ 21 $(top_srcdir)/src/Helpers/unittests/InfoUnitTest.cpp \ 22 $(top_srcdir)/src/Helpers/unittests/LogUnitTest.cpp \ 23 $(top_srcdir)/src/Helpers/unittests/RangeUnitTest.cpp \ 30 24 $(top_srcdir)/src/Patterns/unittests/CacheableUnitTest.cpp \ 31 25 $(top_srcdir)/src/Patterns/unittests/CloneUnitTest.cpp \ … … 46 40 $(top_srcdir)/src/Patterns/unittests/stubs/ObserverStub.cpp \ 47 41 $(top_srcdir)/src/Patterns/unittests/stubs/PrototypeFactoryStub.cpp \ 48 $(top_srcdir)/src/Patterns/unittests/stubs/RegistryStub.cpp \ 49 AssertUnitTest.cpp \ 50 ChronosUnitTest.cpp \ 51 InfoUnitTest.cpp \ 52 LogUnitTest.cpp \ 53 RangeUnitTest.cpp 42 $(top_srcdir)/src/Patterns/unittests/stubs/RegistryStub.cpp 54 43 55 44 TESTHEADERS = \ 45 $(top_srcdir)/src/Helpers/unittests/AssertUnitTest.hpp \ 46 $(top_srcdir)/src/Helpers/unittests/ChronosUnitTest.hpp \ 47 $(top_srcdir)/src/Helpers/unittests/InfoUnitTest.hpp \ 48 $(top_srcdir)/src/Helpers/unittests/LogUnitTest.hpp \ 49 $(top_srcdir)/src/Helpers/unittests/RangeUnitTest.hpp \ 56 50 $(top_srcdir)/src/Patterns/unittests/CacheableUnitTest.hpp \ 57 51 $(top_srcdir)/src/Patterns/unittests/CloneUnitTest.hpp \ … … 80 74 $(top_srcdir)/src/Patterns/unittests/stubs/PrototypeFactoryStub.def \ 81 75 $(top_srcdir)/src/Patterns/unittests/stubs/PrototypeFactoryStub.undef \ 82 $(top_srcdir)/src/Patterns/unittests/stubs/RegistryStub.hpp \ 83 AssertUnitTest.hpp \ 84 ChronosUnitTest.hpp \ 85 InfoUnitTest.hpp \ 86 LogUnitTest.hpp \ 87 RangeUnitTest.hpp 76 $(top_srcdir)/src/Patterns/unittests/stubs/RegistryStub.hpp 88 77 89 90 AssertUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \91 AssertUnitTest.cpp \92 AssertUnitTest.hpp93 AssertUnitTest_LDADD = ${TESTLIBS}94 95 ChronosUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \96 ChronosUnitTest.cpp \97 ChronosUnitTest.hpp98 ChronosUnitTest_LDADD = ${TESTLIBS}99 100 InfoUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \101 InfoUnitTest.cpp \102 InfoUnitTest.hpp103 InfoUnitTest_LDADD = ${TESTLIBS}104 105 IteratorAdaptorsUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \106 IteratorAdaptorsUnitTest.cpp \107 $(top_srcdir)/src/Helpers/IteratorAdaptors.hpp \108 IteratorAdaptorsUnitTest.hpp109 #IteratorAdaptorsUnitTest_LDADD = ${TESTLIBS}110 111 LogUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \112 LogUnitTest.cpp \113 LogUnitTest.hpp114 LogUnitTest_LDADD = ${TESTLIBS}115 116 RangeUnitTest_SOURCES = $(top_srcdir)/src/unittests/UnitTestMain.cpp \117 RangeUnitTest.cpp \118 RangeUnitTest.hpp119 #RangeUnitTest_LDADD = ${TESTLIBS}120 121 78 TestRunner_SOURCES = TestRunnerMain.cpp \ 122 79 $(TESTSOURCES) \
Note:
See TracChangeset
for help on using the changeset viewer.
