mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
df7d0e43d4
Original commit message from CVS: added tests for parsing stuff
35 lines
921 B
Makefile
35 lines
921 B
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
|
|
|
|
GST_PLUGIN_PATH = $(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=`pwd`/test-registry.xml
|
|
|
|
if BUILD_FAILING_TESTS
|
|
testprogs = test_gst_init
|
|
inspectcheck = gst-inspect-check
|
|
else
|
|
testprogs =
|
|
inspectcheck =
|
|
endif
|
|
|
|
TESTS = $(top_builddir)/tools/gst-register $(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 elementstest-registry.xml
|
|
|
|
DIST_SUBDIRS = bytestream caps cleanup clock dynparams elements indexers \
|
|
plugin refcounting threads parse
|
|
|
|
EXTRA_DIST = gst-inspect-check
|