mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
9c87c528e7
Original commit message from CVS: Massive patch to make 'make check' work properly. Many compilation fixes -- everything should compile now. Some tests pass, some fail; the expected sucess/failure is coded in the Makefile.am's. gst-register is properly run for both 'make check' and 'make distcheck'. Much of the common infrastructure is coded in testsuite/Rules.
24 lines
572 B
Text
24 lines
572 B
Text
|
|
TESTS_ENVIRONMENT=\
|
|
G_DEBUG=fatal_warnings \
|
|
GST_PLUGIN_PATH=$(top_builddir) \
|
|
GST_REGISTRY=$(top_builddir)/testsuite/test-registry.xml
|
|
|
|
|
|
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
check_PROGRAMS = $(tests_pass) $(tests_fail)
|
|
|
|
TESTS = $(top_builddir)/tools/gst-register $(tests_pass) $(tests_fail)
|
|
XFAIL_TESTS = $(tests_fail)
|
|
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
LIBS = $(GST_LIBS)
|
|
|
|
# override to _not_ install the test plugins
|
|
install-pluginLTLIBRARIES:
|
|
|
|
# This rule is here so make distcheck works on machines where core
|
|
# dumps have PIDs appended
|
|
CLEANFILES = core.*
|
|
|