1 include $(top_srcdir)/common/check.mak
3 CHECK_REGISTRY = $(top_builddir)/tests/check/test-registry.reg
5 GST_TOOLS_DIR = $(top_builddir)/tools
7 REGISTRY_ENVIRONMENT = \
8 GST_REGISTRY=$(CHECK_REGISTRY)
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
17 plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
19 # override to _not_ install the test plugins
20 install-pluginLTLIBRARIES:
22 # the core dumps of some machines have PIDs appended, test registry and
24 CLEANFILES = core core.* test-registry.* *.gcno *.gcda
26 SUPPRESSIONS = $(top_srcdir)/common/gst.supp
28 clean-local: clean-local-check
31 PARSE_CHECKS = pipelines/parse-disabled
33 PARSE_CHECKS = pipelines/simple-launch-lines pipelines/cleanup pipelines/parse-launch
36 # Do not run the abi test in case any option which causes the API to change has
38 if !GST_DISABLE_LOADSAVE
39 if !GST_DISABLE_REGISTRY
41 ABI_CHECKS = gst/gstabi
47 CXX_CHECKS = gst/gstcpp libs/gstlibscpp
52 # if it's calling gst_element_factory_make(), it will probably not work without
54 if GST_DISABLE_REGISTRY
62 gst/gstelementfactory \
129 libs/gstnetclientclock \
130 libs/gstnettimeprovider \
138 # elements to ignore for the state tests
139 # STATE_IGNORE_ELEMENTS =
141 TESTS = $(check_PROGRAMS)
151 gst/struct_x86_64.h \
155 libs/struct_ppc32.h \
156 libs/struct_ppc64.h \
157 libs/struct_sparc.h \
161 libs/test_transform.c
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 \
169 gst_gstcpp_SOURCES = gst/gstcpp.cc
171 libs_gstlibscpp_SOURCES = libs/gstlibscpp.cc
173 gst_gstutils_LDADD = $(LDADD) $(GSL_LIBS) $(GMP_LIBS)
178 $(top_builddir)/libs/gst/dataprotocol/libgstdataprotocol-@GST_MAJORMINOR@.la \
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\"
186 libs_controller_LDADD = \
187 $(top_builddir)/libs/gst/controller/libgstcontroller-@GST_MAJORMINOR@.la \
189 libs_gstnetclientclock_LDADD = \
190 $(top_builddir)/libs/gst/net/libgstnet-@GST_MAJORMINOR@.la \
192 libs_gstnettimeprovider_LDADD = \
193 $(top_builddir)/libs/gst/net/libgstnet-@GST_MAJORMINOR@.la \
197 # these just need valgrind fixing, period
201 pipelines/parse-launch
206 # these need fixing because the threads cause segfaults under valgrind
211 VALGRIND_TESTS_DISABLE = \
216 # indexers does not get tested yet
220 libs/gst/controller \
222 libs/gst/dataprotocol \
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))
231 echo $(COVERAGE_FILES)
232 echo $(COVERAGE_FILES_REL)
236 # we rebuild a registry and do gst-inspect so that all the get/set codepaths
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
247 echo "You need to configure with --enable-gcov to get coverage data"
253 for dir in $(COVERAGE_DIRS); do \
254 mkdir -p coverage/$$dir; \
255 make -C $(top_builddir)/$$dir gcov; \
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; \
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; \