~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to unittests/include.am

Merged Pawel from lp:~pblokus/drizzle/unittests-plugin-interfaces

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
# All paths should be given relative to the root
4
4
 
5
5
if HAVE_LIBGTEST
6
 
check_PROGRAMS +=       unittests/unittests
 
6
check_PROGRAMS += unittests/unittests
7
7
 
8
 
unittests_unittests_SOURCES= \
9
 
                             unittests/atomics_test.cc \
10
 
                             unittests/calendar_test.cc \
11
 
                             unittests/main.cc \
12
 
                             unittests/table_identifier.cc \
13
 
                             unittests/pthread_atomics_test.cc \
14
 
                             unittests/utf8_test.cc
 
8
unittests_unittests_SOURCES = \
 
9
                              unittests/atomics_test.cc \
 
10
                              unittests/calendar_test.cc \
 
11
                              unittests/date_test.cc \
 
12
                              unittests/date_time_test.cc \
 
13
                              unittests/main.cc \
 
14
                              unittests/micro_timestamp_test.cc \
 
15
                              unittests/nano_timestamp_test.cc \
 
16
                              unittests/plugin/authentication_test.cc \
 
17
                              unittests/plugin/client_test.cc \
 
18
                              unittests/plugin/error_message_test.cc \
 
19
                              unittests/pthread_atomics_test.cc \
 
20
                              unittests/table_identifier.cc \
 
21
                              unittests/temporal_format_test.cc \
 
22
                              unittests/temporal_generator.cc \
 
23
                              unittests/temporal_interval_test.cc \
 
24
                              unittests/time_test.cc \
 
25
                              unittests/timestamp_test.cc \
 
26
                              unittests/utf8_test.cc
15
27
 
16
28
unittests_unittests_LDADD= \
17
29
  $(filter-out drizzled/main.$(OBJEXT), ${am_drizzled_drizzled_OBJECTS}) \
18
30
  ${drizzled_drizzled_LDADD} ${LTLIBGTEST}
19
 
 
20
31
endif