mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 17:09:48 +00:00
803ce6bf48
Original commit message from CVS: GST_DEBUG reorganization This is a big diff (ca 450k), containing loads of stuff: - gstinfo.[ch] complete rewrite - changing of all GST_DEBUG messages to reflect that change - reorganization of subsystem disabling - addition of gstconfig.h.in so we can track the disablings - <gst/gst.h> does not include <unistd.h> and <config.h> anymore - documentation updated for gstinfo stuff (build the docs yourself to know what changed) - bugfixes for making of the docs (files from CVS are not deleted anymore - testsuite for debugging changes in testsuite/debug expect breakage
25 lines
747 B
Makefile
25 lines
747 B
Makefile
TOP_BUILDDIR=$(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(TOP_BUILDDIR) GST_REGISTRY=$(TOP_BUILDDIR)/testsuite/test-registry.xml
|
|
|
|
testprogs = thread1 thread2 thread3 threadb
|
|
testsfailing = threadc threadd threade threadf thread5 thread4
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|
|
|
|
noinst_PROGRAMS = $(testsfailing)
|
|
|
|
LDADD = $(GST_LIBS)
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
|
|
thread1_SOURCES = thread.c
|
|
thread1_CFLAGS = -DTESTNUM=1 $(AM_CFLAGS)
|
|
thread2_SOURCES = thread.c
|
|
thread2_CFLAGS = -DTESTNUM=2 $(AM_CFLAGS)
|
|
thread3_SOURCES = thread.c
|
|
thread3_CFLAGS = -DTESTNUM=3 $(AM_CFLAGS)
|
|
thread4_SOURCES = thread.c
|
|
thread4_CFLAGS = -DTESTNUM=4 $(AM_CFLAGS)
|
|
thread5_SOURCES = thread.c
|
|
thread5_CFLAGS = -DTESTNUM=5 $(AM_CFLAGS)
|