mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-31 20:48:56 +00:00
fix registry in testsuite
Original commit message from CVS: fix registry in testsuite
This commit is contained in:
parent
3fb8c9c0f7
commit
fa3625c241
5 changed files with 26 additions and 4 deletions
|
@ -1,3 +1,11 @@
|
|||
2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* testsuite/Rules:
|
||||
fix gst-register rules
|
||||
* testsuite/plugin/Makefile.am:
|
||||
move gst-register as a test to only plugin, since it's the only
|
||||
one needing it
|
||||
|
||||
2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* testsuite/Rules:
|
||||
|
|
|
@ -9,7 +9,14 @@ plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|||
|
||||
check_PROGRAMS = $(tests_pass) $(tests_fail)
|
||||
|
||||
TESTS = $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@ $(tests_pass) $(tests_fail)
|
||||
# make all tests depend on the versioned gst-register
|
||||
$(tests_pass) $(tests_fail): $(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
|
||||
|
||||
TESTS = $(tests_pass) $(tests_fail)
|
||||
XFAIL_TESTS = $(tests_fail)
|
||||
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
|
|
|
@ -3,7 +3,7 @@ include ../Rules
|
|||
|
||||
plugin_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
||||
|
||||
tests_pass = dynamic linked loading registry static static2
|
||||
tests_pass = $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@ dynamic linked loading registry static static2
|
||||
tests_fail =
|
||||
|
||||
|
||||
|
|
|
@ -9,7 +9,14 @@ plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|||
|
||||
check_PROGRAMS = $(tests_pass) $(tests_fail)
|
||||
|
||||
TESTS = $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@ $(tests_pass) $(tests_fail)
|
||||
# make all tests depend on the versioned gst-register
|
||||
$(tests_pass) $(tests_fail): $(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
|
||||
|
||||
TESTS = $(tests_pass) $(tests_fail)
|
||||
XFAIL_TESTS = $(tests_fail)
|
||||
|
||||
AM_CFLAGS = $(GST_CFLAGS)
|
||||
|
|
|
@ -3,7 +3,7 @@ include ../Rules
|
|||
|
||||
plugin_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
||||
|
||||
tests_pass = dynamic linked loading registry static static2
|
||||
tests_pass = $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@ dynamic linked loading registry static static2
|
||||
tests_fail =
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue