mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-24 17:44:14 +00:00
Original commit message from CVS: 2005-02-23 Andy Wingo <wingo@pobox.com> * gst/gstmessage.h * gst/gstmessage.c (_gst_message_free) (gst_message_new_application): New message type, APPLICATION, explicitly for use by applications. * gst/gstbus.c (gst_bus_post): Only write a byte to the wakeup socket if the queue is coming from an empty state. Fixes a bug where posting a message could block, waiting for someone to read out bytes from the socket. (bus_watch_callback): Renamed from bus_callback, let gst_bus_pop handle the socket read. (bus_watch_destroy): Renamed from bus_destroy. * check/Makefile.am: Re-enable the gst-register test so we can deal with elements here. Add the gstbus tests. * check/gst/gstbus.c: New check, spawns off a bunch of threads all posting messages to a bus, then reads to see if they are in the right order. * check/pipelines/simple_launch_lines.c: Add some tests, and make sure to pop the message off the bus after the poll. * gst/gstbus.c (gst_bus_pop): Read off the control byte if the queue becomes empty.
45 lines
1.3 KiB
Makefile
45 lines
1.3 KiB
Makefile
TESTS_ENVIRONMENT=\
|
|
GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/check \
|
|
GST_REGISTRY=$(top_builddir)/check/test-registry.xml
|
|
|
|
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
# make all tests depend on the versioned gst-register
|
|
$(TESTS): $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@
|
|
|
|
# rebuild gst-register-@GST_MAJORMINOR@ if needed
|
|
$(top_builddir)/tools/gst-register-@GST_MAJORMINOR@:
|
|
cd $(top_builddir)/tools && make
|
|
|
|
# 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.*
|
|
|
|
TESTS = $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@ \
|
|
gst/gstbus \
|
|
gst/gstcaps \
|
|
gst/gstdata \
|
|
gst/gstobject \
|
|
gst/gstpad \
|
|
gst-libs/gdp \
|
|
pipelines/simple_launch_lines
|
|
|
|
check_PROGRAMS = $(TESTS)
|
|
|
|
noinst_LTLIBRARIES = libgstcheck.la
|
|
|
|
libgstcheck_la_SOURCES = gstcheck.c
|
|
libgstcheck_la_LIBADD = $(GST_OBJ_LIBS)
|
|
noinst_HEADERS = gstcheck.h
|
|
|
|
AM_CFLAGS = $(GST_OBJ_CFLAGS) $(CHECK_CFLAGS)
|
|
LDADD = $(GST_OBJ_LIBS) $(CHECK_LIBS) libgstcheck.la
|
|
|
|
gst_libs_gdp_SOURCES = \
|
|
gst-libs/gdp.c \
|
|
$(top_srcdir)/libs/gst/dataprotocol/dataprotocol.c
|
|
# remove GST_ENABLE_NEW when dataprotocol has been declared API-stable
|
|
gst_libs_gdp_CFLAGS = $(AM_CFLAGS) -DGST_ENABLE_NEW
|