~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/include.am

  • Committer: Andrew Hutchings
  • Date: 2011-01-23 21:32:31 UTC
  • mto: (2108.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2109.
  • Revision ID: andrew@linuxjedi.co.uk-20110123213231-dp2r4enepa9k4g36
Convert all unit tests to boost::test
Add pandora support for boost::test
Remove pandora support for gtest

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
#  along with this program; if not, write to the Free Software
18
18
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 
20
 
 
 
20
if HAVE_BOOST_TEST
21
21
check_PROGRAMS += unittests/unittests
 
22
endif
22
23
 
23
24
noinst_HEADERS += \
24
25
                  unittests/plugin/plugin_stubs.h \
38
39
unittests_unittests_SOURCES = \
39
40
                              unittests/main.cc \
40
41
                              unittests/atomics_test.cc \
41
 
                              unittests/calendar_test.cc 
 
42
                              unittests/calendar_test.cc \
 
43
                              unittests/constrained_value.cc \
 
44
                              unittests/date_test.cc \
 
45
                              unittests/date_time_test.cc \
 
46
                              unittests/global_buffer_test.cc \
 
47
                              unittests/libdrizzle_test.cc \
 
48
                              unittests/micro_timestamp_test.cc \
 
49
                              unittests/nano_timestamp_test.cc \
 
50
                              unittests/option_context.cc \
 
51
                              unittests/pthread_atomics_test.cc \
 
52
                              unittests/table_identifier.cc \
 
53
                              unittests/temporal_format_test.cc \
 
54
                              unittests/temporal_generator.cc  \
 
55
                              unittests/timestamp_test.cc \
 
56
                              unittests/time_test.cc \
 
57
                              unittests/utf8_test.cc
42
58
 
43
59
unittests_unittests_LDADD= \
44
60
  $(filter-out drizzled/main.$(OBJEXT), ${am_drizzled_drizzled_OBJECTS}) \
45
 
  ${drizzled_drizzled_LDADD} -lboost_unit_test_framework ${BOOST_LIBS} \
46
 
  libdrizzle/libdrizzle.la
 
61
  ${drizzled_drizzled_LDADD} ${BOOST_LIBS} libdrizzle/libdrizzle.la \
 
62
  ${LTLIBBOOST_UNIT_TEST_FRAMEWORK} ${LTLIBBOOST_UNIT_TEST_FRAMEWORK_MT}