2009-08-06 17:51:29 +00:00
|
|
|
include $(top_srcdir)/common/check.mak
|
|
|
|
|
|
|
|
TESTS_ENVIRONMENT =
|
|
|
|
|
2012-04-04 12:50:23 +00:00
|
|
|
plugindir = $(libdir)/gstreamer-@GST_API_VERSION@
|
2009-08-06 17:51:29 +00:00
|
|
|
|
|
|
|
# override to _not_ install the test plugins
|
|
|
|
install-pluginLTLIBRARIES:
|
|
|
|
|
|
|
|
# the core dumps of some machines have PIDs appended
|
2012-12-24 12:29:04 +00:00
|
|
|
CLEANFILES = core.* test-registry.* *.gcno *.gcda
|
2009-08-06 17:51:29 +00:00
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
common_cflags=-I$(top_srcdir) $(GST_PLUGINS_BASE_CFLAGS) $(GST_OBJ_CFLAGS) \
|
|
|
|
$(GST_CHECK_CFLAGS) $(GST_OPTION_CFLAGS) $(GST_CFLAGS)
|
|
|
|
common_ldadd=$(top_builddir)/ges/libges-@GST_API_VERSION@.la \
|
|
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstpbutils-$(GST_API_VERSION) \
|
|
|
|
$(GST_OBJ_LIBS) $(GST_CHECK_LIBS)
|
|
|
|
|
|
|
|
testutils_noisnt_libraries=libtestutils.la
|
2014-08-15 13:48:14 +00:00
|
|
|
testutils_noinst_headers=ges/test-utils.h nle/common.h
|
2012-09-23 00:23:20 +00:00
|
|
|
libtestutils_la_LIBADD=$(common_ldadd)
|
|
|
|
libtestutils_la_CFLAGS=$(common_cflags)
|
2014-08-15 13:48:14 +00:00
|
|
|
libtestutils_la_SOURCES=ges/test-utils.c nle/common.c
|
2012-09-23 00:23:20 +00:00
|
|
|
|
2009-08-06 17:51:29 +00:00
|
|
|
SUPPRESSIONS = $(top_srcdir)/common/gst.supp # $(srcdir)/gst-plugins-bad.supp
|
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
|
2009-08-06 17:51:29 +00:00
|
|
|
clean-local: clean-local-check
|
|
|
|
|
|
|
|
check_PROGRAMS = \
|
2010-11-05 11:12:24 +00:00
|
|
|
ges/backgroundsource\
|
2009-09-21 16:08:51 +00:00
|
|
|
ges/basic \
|
2010-03-12 18:07:15 +00:00
|
|
|
ges/layer \
|
2010-11-05 11:12:24 +00:00
|
|
|
ges/effects \
|
2013-01-20 15:44:57 +00:00
|
|
|
ges/uriclip \
|
2013-01-20 15:42:29 +00:00
|
|
|
ges/clip \
|
2012-04-24 00:54:15 +00:00
|
|
|
ges/timelineedition \
|
2010-06-21 14:04:22 +00:00
|
|
|
ges/titles\
|
2010-11-05 11:12:24 +00:00
|
|
|
ges/transition \
|
2010-07-14 14:12:56 +00:00
|
|
|
ges/overlays\
|
2012-09-23 00:13:38 +00:00
|
|
|
ges/text_properties\
|
2013-03-30 23:08:15 +00:00
|
|
|
ges/mixers\
|
2013-06-26 21:08:57 +00:00
|
|
|
ges/group\
|
2014-08-15 13:48:14 +00:00
|
|
|
ges/project\
|
|
|
|
nle/simple \
|
|
|
|
nle/complex \
|
|
|
|
nle/nleoperation \
|
|
|
|
nle/nlecomposition
|
2009-08-06 17:51:29 +00:00
|
|
|
|
2014-10-22 11:49:27 +00:00
|
|
|
# We do not support sources outside composition
|
|
|
|
# nle/nlesource
|
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
noinst_LTLIBRARIES=$(testutils_noisnt_libraries)
|
|
|
|
noinst_HEADERS=$(testutils_noinst_headers)
|
2009-08-06 17:51:29 +00:00
|
|
|
|
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
|
2012-09-23 00:23:20 +00:00
|
|
|
AM_CFLAGS = $(common_cflags) -UG_DISABLE_ASSERT -UG_DISABLE_CAST_CHECKS
|
|
|
|
LDADD = $(common_ldadd) libtestutils.la
|
2009-08-06 17:51:29 +00:00
|
|
|
|
2013-04-25 22:03:21 +00:00
|
|
|
noinst_PROGRAMS = integration
|
|
|
|
|
|
|
|
integration_SOURCES = ges/integration.c
|
|
|
|
integration_LDADD = $(LDADD)
|
|
|
|
integration_CFLAGS = $(AM_CFLAGS)
|
|
|
|
|
2012-09-23 00:13:38 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
ges/test-project.xges \
|
2013-04-24 12:25:20 +00:00
|
|
|
ges/test-auto-transition.xges \
|
2012-09-23 00:13:38 +00:00
|
|
|
ges/audio_only.ogg \
|
2014-11-10 16:24:11 +00:00
|
|
|
ges/test-properties.xges \
|
2013-03-22 00:42:31 +00:00
|
|
|
ges/image.png \
|
2012-09-23 00:13:38 +00:00
|
|
|
ges/audio_video.ogg
|
2012-12-24 12:29:04 +00:00
|
|
|
|
|
|
|
COVERAGE_DIRS = \
|
|
|
|
ges
|
|
|
|
COVERAGE_FILES = $(foreach dir,$(COVERAGE_DIRS),$(wildcard $(top_builddir)/$(dir)/*.gcov))
|
|
|
|
COVERAGE_FILES_REL = $(subst $(top_builddir)/,,$(COVERAGE_FILES))
|
|
|
|
COVERAGE_OUT_FILES = $(foreach dir,$(COVERAGE_DIRS),$(wildcard $(top_builddir)/$(dir)/*.gcov.out))
|
|
|
|
COVERAGE_OUT_FILES_REL = $(subst $(top_builddir)/,,$(COVERAGE_OUT_FILES))
|
|
|
|
|
|
|
|
debug:
|
|
|
|
echo $(COVERAGE_FILES)
|
|
|
|
echo $(COVERAGE_FILES_REL)
|
|
|
|
|
|
|
|
.PHONY: coverage
|
|
|
|
if GST_GCOV_ENABLED
|
|
|
|
# we rebuild a registry and do gst-inspect so that all the get/set codepaths
|
|
|
|
# are also covered
|
|
|
|
coverage:
|
|
|
|
make check
|
|
|
|
make coverage-report
|
|
|
|
else
|
|
|
|
coverage:
|
|
|
|
echo "You need to configure with --enable-gcov to get coverage data"
|
|
|
|
exit 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
coverage-report:
|
|
|
|
if test ! -e coverage; then
|
|
|
|
rm -r coverage
|
|
|
|
fi
|
|
|
|
for dir in $(COVERAGE_DIRS); do \
|
|
|
|
mkdir -p coverage/$$dir; \
|
|
|
|
make -C $(top_builddir)/$$dir gcov; \
|
|
|
|
done
|
|
|
|
for dir in $(COVERAGE_DIRS); do \
|
|
|
|
files="`ls $(top_builddir)/$$dir/*.gcov.out 2> /dev/null`"; \
|
|
|
|
if test ! -z "$$files"; then \
|
|
|
|
perl $(top_srcdir)/common/coverage/coverage-report.pl \
|
|
|
|
$(top_builddir)/$$dir/*.gcov.out > \
|
|
|
|
coverage/$$dir/index.xml; \
|
|
|
|
xsltproc $(top_srcdir)/common/coverage/coverage-report.xsl \
|
|
|
|
coverage/$$dir/index.xml > coverage/$$dir/index.html; \
|
|
|
|
fi; \
|
|
|
|
done
|
|
|
|
for file in $(COVERAGE_FILES_REL); do \
|
|
|
|
echo Generating coverage/$$file.html; \
|
|
|
|
perl $(top_srcdir)/common/coverage/coverage-report-entry.pl \
|
|
|
|
$(top_builddir)/$$file > coverage/$$file.html; \
|
|
|
|
done
|
2013-04-25 22:03:21 +00:00
|
|
|
|
|
|
|
check-integration: integration
|
2013-08-27 22:40:55 +00:00
|
|
|
CK_DEFAULT_TIMEOUT=20 ./integration
|
2013-04-25 22:03:21 +00:00
|
|
|
|
|
|
|
check-integration-forever:
|
|
|
|
@while true; do \
|
|
|
|
make check-integration \
|
|
|
|
CK_DEFAULT_TIMEOUT=20 \
|
|
|
|
$* || break; done
|
2013-07-17 16:31:02 +00:00
|
|
|
|
|
|
|
check-integration-gdb:
|
|
|
|
@$(TESTS_ENVIRONMENT) \
|
|
|
|
CK_FORK=no \
|
|
|
|
$(LIBTOOL) --mode=execute \
|
|
|
|
gdb ./integration
|