caps: Fix subset check in gst_caps_merge()
[platform/upstream/gstreamer.git] / tests / check / Makefile.am
1 include $(top_srcdir)/common/check.mak
2
3 CHECK_REGISTRY = $(top_builddir)/tests/check/test-registry.reg
4
5 GST_TOOLS_DIR = $(top_builddir)/tools
6
7 REGISTRY_ENVIRONMENT = \
8         GST_REGISTRY=$(CHECK_REGISTRY)
9
10 TESTS_ENVIRONMENT = \
11         GST_STATE_IGNORE_ELEMENTS="$(STATE_IGNORE_ELEMENTS)"    \
12         $(REGISTRY_ENVIRONMENT)                                 \
13         GST_PLUGIN_SCANNER=$(top_builddir)/libs/gst/helpers/gst-plugin-scanner \
14         GST_PLUGIN_SYSTEM_PATH=                                 \
15         GST_PLUGIN_PATH=$(top_builddir)/plugins
16
17 plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
18
19 # override to _not_ install the test plugins
20 install-pluginLTLIBRARIES:
21
22 # the core dumps of some machines have PIDs appended, test registry and
23 # profiling data
24 CLEANFILES = core core.* test-registry.* *.gcno *.gcda
25
26 SUPPRESSIONS = $(top_srcdir)/common/gst.supp
27
28 clean-local: clean-local-check
29
30 if GST_DISABLE_PARSE
31 PARSE_CHECKS = pipelines/parse-disabled
32 else
33 PARSE_CHECKS = pipelines/simple-launch-lines pipelines/cleanup pipelines/parse-launch
34 endif
35
36 # Do not run the abi test in case any option which causes the API to change has
37 # been used
38 if !GST_DISABLE_LOADSAVE
39 if !GST_DISABLE_REGISTRY
40 if !GST_DISABLE_TRACE
41 ABI_CHECKS = gst/gstabi
42 endif
43 endif
44 endif
45
46 if HAVE_CXX
47 CXX_CHECKS = gst/gstcpp libs/gstlibscpp
48 else
49 CXX_CHECKS =
50 endif
51
52 # if it's calling gst_element_factory_make(), it will probably not work without
53 # a registry
54 if GST_DISABLE_REGISTRY
55 REGISTRY_CHECKS =
56 else
57 REGISTRY_CHECKS =                               \
58         gst/gst                                 \
59         gst/gstbin                              \
60         gst/gstchildproxy                       \
61         gst/gstelement                          \
62         gst/gstelementfactory                   \
63         gst/gstevent                            \
64         gst/gstghostpad                         \
65         gst/gstindex                            \
66         gst/gstinterface                                \
67         gst/gstplugin                           \
68         gst/gstpreset                           \
69         gst/gstquery                            \
70         gst/gstregistry                         \
71         gst/gsturi                              \
72         gst/gstutils                            \
73         generic/sinks                           \
74         elements/capsfilter                     \
75         elements/fakesink                       \
76         elements/fakesrc                        \
77         elements/fdsrc                          \
78         elements/filesink                       \
79         elements/filesrc                        \
80         elements/funnel                         \
81         elements/identity                       \
82         elements/multiqueue                     \
83         elements/selector                       \
84         elements/tee                            \
85         elements/queue                          \
86         elements/queue2                         \
87         elements/valve                          \
88         libs/basesrc                            \
89         libs/basesink                           \
90         libs/controller                         \
91         libs/typefindhelper                     \
92         pipelines/stress                        \
93         pipelines/queue-error
94 endif
95
96 check_PROGRAMS =                                \
97         $(ABI_CHECKS)                           \
98         gst/gstbuffer                           \
99         gst/gstbufferlist                       \
100         gst/gstbus                              \
101         gst/gstcaps                             \
102         $(CXX_CHECKS)                           \
103         gst/gstdatetime                         \
104         gst/gstinfo                             \
105         gst/gstiterator                         \
106         gst/gstmessage                          \
107         gst/gstminiobject                       \
108         gst/gstobject                           \
109         gst/gstpad                              \
110         gst/gstparamspecs                       \
111         gst/gstpoll                             \
112         gst/gstsegment                          \
113         gst/gstsystemclock                      \
114         gst/gstclock                            \
115         gst/gststructure                        \
116         gst/gsttag                              \
117         gst/gsttagsetter                        \
118         gst/gsttask                             \
119         gst/gstvalue                            \
120         generic/states                          \
121         $(PARSE_CHECKS)                         \
122         $(REGISTRY_CHECKS)                      \
123         libs/libsabi                            \
124         libs/gdp                                \
125         libs/adapter                            \
126         libs/bitreader                          \
127         libs/bytereader                         \
128         libs/bytewriter                         \
129         libs/gstnetclientclock                  \
130         libs/gstnettimeprovider                 \
131         libs/transform1
132
133 # failing tests
134 noinst_PROGRAMS =                               \
135         gst/gstpipeline                         \
136         libs/collectpads
137
138 # elements to ignore for the state tests
139 # STATE_IGNORE_ELEMENTS =
140
141 TESTS = $(check_PROGRAMS)
142
143 noinst_HEADERS = \
144         gst/capslist.h \
145         gst/struct_arm.h \
146         gst/struct_i386.h \
147         gst/struct_hppa.h \
148         gst/struct_ppc32.h \
149         gst/struct_ppc64.h \
150         gst/struct_sparc.h \
151         gst/struct_x86_64.h \
152         libs/struct_arm.h \
153         libs/struct_i386.h \
154         libs/struct_hppa.h \
155         libs/struct_ppc32.h \
156         libs/struct_ppc64.h \
157         libs/struct_sparc.h \
158         libs/struct_x86_64.h
159
160 EXTRA_DIST = \
161         libs/test_transform.c
162
163 AM_CFLAGS = $(GST_OBJ_CFLAGS) -UG_DISABLE_ASSERT -UG_DISABLE_CAST_CHECKS
164 AM_CXXFLAGS = $(GST_OBJ_CXXFLAGS) -UG_DISABLE_ASSERT -UG_DISABLE_CAST_CHECKS
165 LDADD = $(top_builddir)/libs/gst/check/libgstcheck-@GST_MAJORMINOR@.la \
166         $(top_builddir)/libs/gst/base/libgstbase-@GST_MAJORMINOR@.la \
167         $(GST_OBJ_LIBS)
168
169 gst_gstcpp_SOURCES = gst/gstcpp.cc
170
171 libs_gstlibscpp_SOURCES = libs/gstlibscpp.cc
172
173 gst_gstutils_LDADD = $(LDADD) $(GSL_LIBS) $(GMP_LIBS)
174
175 libs_gdp_SOURCES = \
176         libs/gdp.c
177 libs_gdp_LDADD = \
178         $(top_builddir)/libs/gst/dataprotocol/libgstdataprotocol-@GST_MAJORMINOR@.la \
179         $(LDADD)
180
181 elements_fdsrc_CFLAGS=$(GST_OBJ_CFLAGS) $(AM_CFLAGS) \
182         -DTESTFILE=\"$(top_srcdir)/configure.ac\"
183 elements_filesrc_CFLAGS=$(GST_OBJ_CFLAGS) $(AM_CFLAGS) \
184         -DTESTFILE=\"$(top_srcdir)/configure.ac\"
185
186 libs_controller_LDADD = \
187         $(top_builddir)/libs/gst/controller/libgstcontroller-@GST_MAJORMINOR@.la \
188         $(LDADD)
189 libs_gstnetclientclock_LDADD = \
190         $(top_builddir)/libs/gst/net/libgstnet-@GST_MAJORMINOR@.la \
191         $(LDADD)
192 libs_gstnettimeprovider_LDADD = \
193         $(top_builddir)/libs/gst/net/libgstnet-@GST_MAJORMINOR@.la \
194         $(LDADD)
195
196 # valgrind testing
197 # these just need valgrind fixing, period
198 VALGRIND_TO_FIX = \
199         gst/gstinfo \
200         libs/collectpads \
201         pipelines/parse-launch
202
203 VALGRIND_IGNORE = \
204         pipelines/stress
205
206 # these need fixing because the threads cause segfaults under valgrind
207 TESTS_THREADED =                                \
208         gst/gstminiobject                       \
209         gst/gstobject
210
211 VALGRIND_TESTS_DISABLE =                                        \
212         $(TESTS_THREADED)                                       \
213         $(VALGRIND_IGNORE)                                      \
214         $(VALGRIND_TO_FIX)
215
216 # indexers does not get tested yet
217 COVERAGE_DIRS = \
218         gst \
219         libs/gst/base \
220         libs/gst/controller \
221         libs/gst/check \
222         libs/gst/dataprotocol \
223         libs/gst/net \
224         plugins/elements
225 COVERAGE_FILES = $(foreach dir,$(COVERAGE_DIRS),$(wildcard $(top_builddir)/$(dir)/*.gcov))
226 COVERAGE_FILES_REL = $(subst $(top_builddir)/,,$(COVERAGE_FILES))
227 COVERAGE_OUT_FILES = $(foreach dir,$(COVERAGE_DIRS),$(wildcard $(top_builddir)/$(dir)/*.gcov.out))
228 COVERAGE_OUT_FILES_REL = $(subst $(top_builddir)/,,$(COVERAGE_OUT_FILES))
229
230 debug:
231         echo $(COVERAGE_FILES)
232         echo $(COVERAGE_FILES_REL)
233
234 .PHONY: coverage
235 if GST_GCOV_ENABLED
236 # we rebuild a registry and do gst-inspect so that all the get/set codepaths
237 # are also covered
238 coverage:
239         for file in `find $(top_builddir) -name '*.gcda'`; do rm $$file; done
240         -rm $(CHECK_REGISTRY)
241         echo "Inspecting all elements"
242         for e in `$(GST_INSPECT) | head -n -2 | cut -d: -f2`; do $(GST_INSPECT) $$e > /dev/null 2>&1; done
243         make check
244         make coverage-report
245 else
246 coverage:
247         echo "You need to configure with --enable-gcov to get coverage data"
248         exit 1
249 endif
250
251 coverage-report:
252         rm -r coverage
253         for dir in $(COVERAGE_DIRS); do                                 \
254           mkdir -p coverage/$$dir;                                      \
255           make -C $(top_builddir)/$$dir gcov;                           \
256         done
257         for dir in $(COVERAGE_DIRS); do                                 \
258             files="`ls $(top_builddir)/$$dir/*.gcov.out 2> /dev/null`"; \
259           if test ! -z "$$files"; then                                  \
260             perl $(top_srcdir)/common/coverage/coverage-report.pl       \
261               $(top_builddir)/$$dir/*.gcov.out >                        \
262               coverage/$$dir/index.xml;                                 \
263             xsltproc $(top_srcdir)/common/coverage/coverage-report.xsl  \
264               coverage/$$dir/index.xml > coverage/$$dir/index.html;     \
265           fi; \
266         done
267
268         for file in $(COVERAGE_FILES_REL); do                           \
269           echo Generating coverage/$$file.html;                         \
270           perl $(top_srcdir)/common/coverage/coverage-report-entry.pl   \
271             $(top_builddir)/$$file > coverage/$$file.html;              \
272         done