~ubuntu-branches/ubuntu/trusty/drizzle/trusty

« back to all changes in this revision

Viewing changes to unittests/include.am

  • Committer: Bazaar Package Importer
  • Author(s): Monty Taylor
  • Date: 2010-10-02 14:17:48 UTC
  • mfrom: (1.1.1 upstream)
  • mto: (2.1.17 sid)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20101002141748-m6vbfbfjhrw1153e
Tags: 2010.09.1802-1
* New upstream release.
* Removed pid-file argument hack.
* Updated GPL-2 address to be new address.
* Directly copy in drizzledump.1 since debian doesn't have sphinx 1.0 yet.
* Link to jquery from libjs-jquery. Add it as a depend.
* Add drizzled.8 symlink to the install files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# vim:ft=automake
 
2
# included from Top Level Makefile.am
 
3
# All paths should be given relative to the root
 
4
 
 
5
if HAVE_LIBGTEST
 
6
check_PROGRAMS += unittests/unittests
 
7
endif
 
8
 
 
9
noinst_HEADERS += \
 
10
                  unittests/plugin/plugin_stubs.h \
 
11
                  unittests/temporal_generator.h
 
12
 
 
13
EXTRA_DIST += \
 
14
              unittests/client_server.c
 
15
 
 
16
unit: unittests/unittests
 
17
        unittests/unittests
 
18
 
 
19
# Removed temporal_interval_test, it is not cleaning up after itself. -Brian
 
20
#
 
21
#                     unittests/temporal_interval_test.cc
 
22
#                    
 
23
 
 
24
unittests_unittests_SOURCES = \
 
25
                              unittests/atomics_test.cc \
 
26
                              unittests/calendar_test.cc \
 
27
                              unittests/date_test.cc \
 
28
                              unittests/date_time_test.cc \
 
29
                              unittests/generators.cc \
 
30
                              unittests/main.cc \
 
31
                              unittests/micro_timestamp_test.cc \
 
32
                              unittests/nano_timestamp_test.cc \
 
33
                              unittests/option_context.cc \
 
34
                              unittests/plugin/authentication_test.cc \
 
35
                              unittests/plugin/client_test.cc \
 
36
                              unittests/plugin/error_message_test.cc \
 
37
                              unittests/pthread_atomics_test.cc \
 
38
                              unittests/table_identifier.cc \
 
39
                              unittests/temporal_format_test.cc \
 
40
                              unittests/temporal_generator.cc \
 
41
                              unittests/time_test.cc \
 
42
                              unittests/timestamp_test.cc \
 
43
                              unittests/utf8_test.cc
 
44
 
 
45
unittests_unittests_LDADD= \
 
46
  $(filter-out drizzled/main.$(OBJEXT), ${am_drizzled_drizzled_OBJECTS}) \
 
47
  ${drizzled_drizzled_LDADD} ${LTLIBGTEST} ${BOOST_LIBS}