~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/include.am

  • Committer: lbieber
  • Date: 2010-09-11 16:33:45 UTC
  • mfrom: (1757.1.2 build)
  • Revision ID: lbieber@orisndriz03-20100911163345-na1t8m18at9thsjl
Merge Vijay - added utf 8 tamil test case suite and test case for creating a database in tamil
Merge Brian - Small set of refactoring (includes one case of memset on a table object).

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
# included from Top Level Makefile.am
3
3
# All paths should be given relative to the root
4
4
 
5
 
#  Copyright (C) 2010 Monty Taylor
6
 
#
7
 
#  This program is free software; you can redistribute it and/or modify
8
 
#  it under the terms of the GNU General Public License as published by
9
 
#  the Free Software Foundation; version 2 of the License.
10
 
#
11
 
#  This program is distributed in the hope that it will be useful,
12
 
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
13
 
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
 
#  GNU General Public License for more details.
15
 
#
16
 
#  You should have received a copy of the GNU General Public License
17
 
#  along with this program; if not, write to the Free Software
18
 
#  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
 
 
20
 
if HAVE_BOOST_TEST
 
5
if HAVE_LIBGTEST
21
6
check_PROGRAMS += unittests/unittests
22
7
endif
23
8
 
28
13
unit: unittests/unittests
29
14
        unittests/unittests
30
15
 
31
 
# Removed temporal_interval_test, it is not cleaning up after itself. -Brian
32
 
#
33
 
#                     unittests/temporal_interval_test.cc
34
 
#                    
35
 
 
36
16
unittests_unittests_SOURCES = \
37
 
                              unittests/main.cc \
38
17
                              unittests/atomics_test.cc \
39
18
                              unittests/calendar_test.cc \
40
 
                              unittests/constrained_value.cc \
41
19
                              unittests/date_test.cc \
42
20
                              unittests/date_time_test.cc \
43
 
                              unittests/global_buffer_test.cc \
44
 
                              unittests/libdrizzle_test.cc \
 
21
                              unittests/generators.cc \
 
22
                              unittests/main.cc \
45
23
                              unittests/micro_timestamp_test.cc \
46
24
                              unittests/nano_timestamp_test.cc \
47
25
                              unittests/option_context.cc \
 
26
                              unittests/plugin/authentication_test.cc \
 
27
                              unittests/plugin/client_test.cc \
 
28
                              unittests/plugin/error_message_test.cc \
48
29
                              unittests/pthread_atomics_test.cc \
49
30
                              unittests/table_identifier.cc \
50
31
                              unittests/temporal_format_test.cc \
51
 
                              unittests/temporal_generator.cc  \
 
32
                              unittests/temporal_generator.cc \
 
33
                              unittests/temporal_interval_test.cc \
 
34
                              unittests/time_test.cc \
52
35
                              unittests/timestamp_test.cc \
53
 
                              unittests/time_test.cc \
54
36
                              unittests/utf8_test.cc
55
37
 
56
38
unittests_unittests_LDADD= \
57
39
  $(filter-out drizzled/main.$(OBJEXT), ${am_drizzled_drizzled_OBJECTS}) \
58
 
  ${drizzled_drizzled_LDADD} ${BOOST_LIBS} libdrizzle/libdrizzle.la \
59
 
  ${LTLIBBOOST_UNIT_TEST_FRAMEWORK} ${LTLIBBOOST_UNIT_TEST_FRAMEWORK_MT}
 
40
  ${drizzled_drizzled_LDADD} ${LTLIBGTEST} ${BOOST_LIBS}