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