~ubuntu-branches/ubuntu/precise/evolution-data-server/precise

« back to all changes in this revision

Viewing changes to calendar/tests/ecal/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mathieu Trudel-Lapierre, Ken VanDine, Mathieu Trudel-Lapierre
  • Date: 2011-06-23 17:40:41 UTC
  • mfrom: (1.1.88 upstream)
  • Revision ID: james.westby@ubuntu.com-20110623174041-4wd9jvs07wfinyet
Tags: 3.1.2-0ubuntu1
* New upstream version
  - bgo 589495 - Search folder by Size (KB) counts bytes, not KB (LP: #385859)
  - bgo 649757 - Filtering on a source account always succeeded (LP: #781391)
  - bgo 418954 - Add a separate entry combo for port numbers (LP: #160304)

[ Ken VanDine ]
* debian/libebook1.2-dev.install
  - Include EBook-1.2.gir
* debian/control
  - Added gir1.2-ebook-1.2 binary

[ Mathieu Trudel-Lapierre ]
* debian/control: drop libegroupwise1.2-13, libegroupwise-dev, they are now
  an independent module.
* debian/libegroupwise1.2-13.install,
  debian/libegroupwise1.2-dev.install,
  debian/lintian/libegroupwise1.2-13: dropped, see above.
* debian/control, debian/libe*.install, debian/lintian/libe*: rename and
  update files where needed to follow upstream soname changes.
* debian/control: bump evolution-data-server's Depends to libcamel-1.2-26.
* debian/rules: update to use makeshlibs with the new libcamel soname.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
noinst_LTLIBRARIES = libecal-test-utils.la
2
 
libecal_test_utils_la_SOURCES = ecal-test-utils.c ecal-test-utils.h
3
 
 
4
 
libecal_test_utils_la_CPPFLAGS = \
5
 
        $(AM_CPPFLAGS)                                  \
6
 
        -DLOCALEDIR=\""$(localedir)"\"                  \
7
 
        -I$(top_srcdir)                                 \
8
 
        -I$(top_builddir)                               \
9
 
        -I$(top_srcdir)/calendar                        \
10
 
        -I$(top_builddir)/calendar                      \
11
 
        $(LIBICAL_CFLAGS)                               \
12
 
        $(EVOLUTION_CALENDAR_CFLAGS)                    \
13
 
        $(NULL)
14
 
 
15
 
libecal_test_utils_la_LIBADD = \
16
 
        $(top_builddir)/calendar/libecal/libecal-1.2.la         \
17
 
        $(EVOLUTION_CALENDAR_LIBS)                              \
18
 
        $(NULL)
19
 
 
20
 
TEST_ECAL_LIBS = \
21
 
        $(libecal_test_utils_la_LIBADD) \
22
 
        libecal-test-utils.la           \
23
 
        $(NULL)
24
 
 
25
 
EXTRA_DIST =                          \
26
 
        $(test_scripts)               \
27
 
        testdata.ics
28
 
 
29
 
test_scripts =                         \
30
 
        test-runner.sh                 \
31
 
        cleanup.sh
32
 
 
33
 
# ordered by relative complexity
34
 
TESTS = \
35
 
        test-ecal-remove                        \
36
 
        test-ecal-open                          \
37
 
        test-ecal-get-free-busy                 \
38
 
        test-ecal-get-timezone                  \
39
 
        test-ecal-add-timezone                  \
40
 
        test-ecal-set-default-timezone          \
41
 
        test-ecal-get-alarm-email-address       \
42
 
        test-ecal-get-cal-address               \
43
 
        test-ecal-get-ldap-attribute            \
44
 
        test-ecal-get-capabilities              \
45
 
        test-ecal-get-default-object            \
46
 
        test-ecal-set-mode                      \
47
 
        test-ecal-create-object                 \
48
 
        test-ecal-create-object--2              \
49
 
        test-ecal-get-objects-for-uid           \
50
 
        test-ecal-remove-object                 \
51
 
        test-ecal-get-object-list               \
52
 
        test-ecal-modify-object                 \
53
 
        test-ecal-send-objects                  \
54
 
        test-ecal-receive-objects               \
55
 
        test-ecal-get-query                     \
56
 
        test-ecal-stress-factory--serial        \
57
 
        test-ecal-stress-factory--fifo          \
58
 
        test-ecal-stress-factory--single-cal    \
59
 
        test-ecal-stress-factory--open-async    \
60
 
        $(NULL)
61
 
 
62
 
# The test program
63
 
noinst_PROGRAMS = $(TESTS) test-ecal test-recur test-search
64
 
 
65
 
TEST_ECAL_CPPFLAGS= \
66
 
        $(libecal_test_utils_la_CPPFLAGS) \
67
 
        $(NULL)
68
 
 
69
 
# ordered alphanumerically
70
 
test_ecal_add_timezone_LDADD=$(TEST_ECAL_LIBS)
71
 
test_ecal_add_timezone_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
72
 
test_ecal_create_object_LDADD=$(TEST_ECAL_LIBS)
73
 
test_ecal_create_object_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
74
 
test_ecal_create_object__2_LDADD=$(TEST_ECAL_LIBS)
75
 
test_ecal_create_object__2_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
76
 
test_ecal_get_alarm_email_address_LDADD=$(TEST_ECAL_LIBS)
77
 
test_ecal_get_alarm_email_address_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
78
 
test_ecal_get_cal_address_LDADD=$(TEST_ECAL_LIBS)
79
 
test_ecal_get_cal_address_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
80
 
test_ecal_get_default_object_LDADD=$(TEST_ECAL_LIBS)
81
 
test_ecal_get_default_object_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
82
 
test_ecal_get_free_busy_LDADD=$(TEST_ECAL_LIBS)
83
 
test_ecal_get_free_busy_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
84
 
test_ecal_get_ldap_attribute_LDADD=$(TEST_ECAL_LIBS)
85
 
test_ecal_get_ldap_attribute_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
86
 
test_ecal_get_capabilities_LDADD=$(TEST_ECAL_LIBS)
87
 
test_ecal_get_capabilities_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
88
 
test_ecal_get_object_list_LDADD=$(TEST_ECAL_LIBS)
89
 
test_ecal_get_object_list_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
90
 
test_ecal_get_objects_for_uid_LDADD=$(TEST_ECAL_LIBS)
91
 
test_ecal_get_objects_for_uid_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
92
 
test_ecal_get_query_LDADD=$(TEST_ECAL_LIBS)
93
 
test_ecal_get_query_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
94
 
test_ecal_get_timezone_LDADD=$(TEST_ECAL_LIBS)
95
 
test_ecal_get_timezone_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
96
 
test_ecal_modify_object_LDADD=$(TEST_ECAL_LIBS)
97
 
test_ecal_modify_object_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
98
 
test_ecal_open_LDADD=$(TEST_ECAL_LIBS)
99
 
test_ecal_open_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
100
 
test_ecal_receive_objects_LDADD=$(TEST_ECAL_LIBS)
101
 
test_ecal_receive_objects_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
102
 
test_ecal_remove_LDADD=$(TEST_ECAL_LIBS)
103
 
test_ecal_remove_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
104
 
test_ecal_remove_object_LDADD=$(TEST_ECAL_LIBS)
105
 
test_ecal_remove_object_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
106
 
test_ecal_send_objects_LDADD=$(TEST_ECAL_LIBS)
107
 
test_ecal_send_objects_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
108
 
test_ecal_set_default_timezone_LDADD=$(TEST_ECAL_LIBS)
109
 
test_ecal_set_default_timezone_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
110
 
test_ecal_set_mode_LDADD=$(TEST_ECAL_LIBS)
111
 
test_ecal_set_mode_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
112
 
test_ecal_stress_factory__fifo_LDADD=$(TEST_ECAL_LIBS)
113
 
test_ecal_stress_factory__fifo_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
114
 
test_ecal_stress_factory__open_async_LDADD=$(TEST_ECAL_LIBS)
115
 
test_ecal_stress_factory__open_async_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
116
 
test_ecal_stress_factory__serial_LDADD=$(TEST_ECAL_LIBS)
117
 
test_ecal_stress_factory__serial_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
118
 
test_ecal_stress_factory__single_cal_LDADD=$(TEST_ECAL_LIBS)
119
 
test_ecal_stress_factory__single_cal_CPPFLAGS=$(TEST_ECAL_CPPFLAGS)
120
 
 
121
 
# monolithic tests
122
 
test_ecal_SOURCES = test-ecal.c
123
 
test_ecal_CPPFLAGS = $(TEST_ECAL_CPPFLAGS)
124
 
test_ecal_INCLUDES =                    \
125
 
        $(INCLUDES)                     \
126
 
        -DG_LOG_DOMAIN=\"test-ecal\"
127
 
test_ecal_LDADD =                                                       \
128
 
        $(top_builddir)/calendar/libecal/libecal-1.2.la                 \
129
 
        $(top_builddir)/libedataserver/libedataserver-1.2.la            \
130
 
        $(LIBICAL_LIBS)                                                 \
131
 
        $(EVOLUTION_CALENDAR_LIBS)
132
 
 
133
 
test_recur_SOURCES = test-recur.c
134
 
test_recur_CPPFLAGS = $(TEST_ECAL_CPPFLAGS)
135
 
test_recur_INCLUDES =                   \
136
 
        $(INCLUDES)                     \
137
 
        -DG_LOG_DOMAIN=\"test-ecal\"
138
 
test_recur_LDADD =                                                      \
139
 
        $(top_builddir)/calendar/libecal/libecal-1.2.la                 \
140
 
        $(top_builddir)/libedataserver/libedataserver-1.2.la            \
141
 
        $(LIBICAL_LIBS)                                                 \
142
 
        $(EVOLUTION_CALENDAR_LIBS)
143
 
 
144
 
test_search_SOURCES = test-search.c
145
 
test_search_CPPFLAGS = $(TEST_ECAL_CPPFLAGS)
146
 
test_search_INCLUDES =                  \
147
 
        $(INCLUDES)                     \
148
 
        -DG_LOG_DOMAIN=\"test-ecal\"
149
 
test_search_LDADD =                                                     \
150
 
        $(top_builddir)/calendar/libecal/libecal-1.2.la                 \
151
 
        $(top_builddir)/libedataserver/libedataserver-1.2.la            \
152
 
        $(LIBICAL_LIBS)                                                 \
153
 
        $(EVOLUTION_CALENDAR_LIBS)
154
 
 
155
 
-include $(top_srcdir)/git.mk