mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
6dff9c2cbd
Original commit message from CVS: * check/Makefile.am: * check/elements/audioconvert.c: (setup_audioconvert), (cleanup_audioconvert), (get_int_caps), (verify_convert), (GST_START_TEST), (audioconvert_suite), (main): add a test for audioconvert * gst/audioresample/gstaudioresample.c: * gst/audioresample/gstaudioresample.h: set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b); note that for buffers of 1/3 sec this means DURATION(c) is one nanosecond more than for a and b
49 lines
1.2 KiB
Makefile
49 lines
1.2 KiB
Makefile
include $(top_srcdir)/common/check.mak
|
|
|
|
CHECK_REGISTRY = $(top_builddir)/check/test-registry.xml
|
|
|
|
REGISTRY_ENVIRONMENT = \
|
|
GST_REGISTRY=$(CHECK_REGISTRY)
|
|
|
|
TESTS_ENVIRONMENT = \
|
|
$(REGISTRY_ENVIRONMENT) \
|
|
GST_PLUGIN_PATH_ONLY=yes \
|
|
GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/ext:$(GST_PLUGINS_DIR)
|
|
|
|
# ths core dumps of some machines have PIDs appended
|
|
CLEANFILES = core.* test-registry.xml
|
|
|
|
clean-local: clean-local-check
|
|
|
|
$(CHECK_REGISTRY):
|
|
$(TESTS_ENVIRONMENT) \
|
|
$(GST_TOOLS_DIR)/gst-register-@GST_MAJORMINOR@
|
|
|
|
TESTS = $(GST_TOOLS_DIR)/gst-register-@GST_MAJORMINOR@ \
|
|
$(check_PROGRAMS)
|
|
|
|
if USE_VORBIS
|
|
check_vorbis = elements/vorbisdec
|
|
else
|
|
check_vorbis =
|
|
endif
|
|
|
|
check_PROGRAMS = \
|
|
elements/audioconvert \
|
|
elements/audioresample \
|
|
elements/volume \
|
|
$(check_vorbis)
|
|
|
|
# these tests don't even pass
|
|
# generic/states: elements need state fixin' before this can be added
|
|
noinst_PROGRAMS = \
|
|
generic/states
|
|
|
|
AM_CFLAGS = $(GST_OBJ_CFLAGS) $(GST_CHECK_CFLAGS) $(CHECK_CFLAGS)
|
|
LDADD = $(GST_OBJ_LIBS) $(GST_CHECK_LIBS) $(CHECK_LIBS)
|
|
|
|
# valgrind testing
|
|
VALGRIND_TESTS_DISABLE = \
|
|
$(GST_TOOLS_DIR)/gst-register-@GST_MAJORMINOR@
|
|
|
|
SUPPRESSIONS = $(top_srcdir)/common/gst.supp
|