mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-24 16:18:16 +00:00
b2117398c7
Original commit message from CVS: allowing failing tests to be built
19 lines
435 B
Makefile
19 lines
435 B
Makefile
if BUILD_FAILING_TESTS
|
|
tests_failing = tee
|
|
else
|
|
tests_failing =
|
|
endif
|
|
tests_working = fake name
|
|
|
|
## GST_PLUGIN_PATH=$(shell cd $(top_builddir) && pwd)
|
|
|
|
## TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=$(GST_PLUGIN_PATH)/testsuite/test-registry.xml
|
|
|
|
TESTS = $(tests_failing) $(tests_working)
|
|
|
|
check_PROGRAMS = $(tests_failing) $(tests_working)
|
|
|
|
EXTRA_DIST = property.h
|
|
LDADD = $(GST_LIBS)
|
|
CFLAGS = $(GST_CFLAGS)
|
|
|