mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
6cf83f6d8b
Original commit message from CVS: applying http://bugzilla.gnome.org/show_bug.cgi?id=110707 patch, should fix testsuite issues
38 lines
1.1 KiB
Makefile
38 lines
1.1 KiB
Makefile
if GST_DISABLE_PARSE
|
|
GST_PARSE_DIRS =
|
|
else
|
|
GST_PARSE_DIRS = parse
|
|
endif
|
|
|
|
# FIXME : threads bytestream
|
|
SUBDIRS = caps plugin elements clock refcounting threads indexers $(GST_PARSE_DIRS) ## cleanup dynparams
|
|
|
|
TOP_BUILDDIR=$(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(TOP_BUILDDIR) GST_REGISTRY=$(TOP_BUILDDIR)/testsuite/test-registry.xml
|
|
|
|
if BUILD_FAILING_TESTS
|
|
testprogs = test_gst_init
|
|
inspectcheck = gst-inspect-check
|
|
else
|
|
testprogs =
|
|
inspectcheck =
|
|
endif
|
|
|
|
# since these TESTS are only run after recursing into subdirs,
|
|
# gst-register should be run before that, in the first subdir that uses it
|
|
# TESTS = $(top_builddir)/tools/gst-register $(testprogs) $(inspectcheck)
|
|
TESTS = $(testprogs) $(inspectcheck)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
# we have nothing but apps here, we can do this safely
|
|
LIBS = $(GST_LIBS)
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
|
|
# we makes them, we gots to clean them
|
|
CLEANFILES = test-registry.xml
|
|
|
|
DIST_SUBDIRS = bytestream caps cleanup clock dynparams elements indexers \
|
|
plugin refcounting threads parse
|
|
|
|
EXTRA_DIST = gst-inspect-check
|