From d6a4702910ee07b6db3b5c95bd5e841feed95cbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Sat, 2 Feb 2008 15:32:23 +0000 Subject: [PATCH] tests/check/Makefile.am: Fix the tests environment's GST_PLUGIN_PATH: we want the directory with the core's plugins f... Original commit message from CVS: * tests/check/Makefile.am: Fix the tests environment's GST_PLUGIN_PATH: we want the directory with the core's plugins first and our local build directories last, since we might be building against an installed core, and that core's plugin directory may contain older or other versions of our own -base plugins, but we really do want to test our local ones (if there are multiple plugins or element factories with the same name, those inspected last will trump those read in earlier). Fixes #512740 for the most part. --- ChangeLog | 12 ++++++++++++ tests/check/Makefile.am | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index ae92899bcb..45c4bd3eac 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +2008-02-02 Tim-Philipp Müller + + * tests/check/Makefile.am: + Fix the tests environment's GST_PLUGIN_PATH: we want the directory + with the core's plugins first and our local build directories last, + since we might be building against an installed core, and that + core's plugin directory may contain older or other versions of + our own -base plugins, but we really do want to test our local + ones (if there are multiple plugins or element factories with the + same name, those inspected last will trump those read in earlier). + Fixes #512740 for the most part. + 2008-02-02 Sebastian Dröge * configure.ac: diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index c52546ebbc..db5a9ce2f3 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -10,7 +10,7 @@ TESTS_ENVIRONMENT = \ STATE_IGNORE_ELEMENTS="$(STATE_IGNORE_ELEMENTS)" \ $(REGISTRY_ENVIRONMENT) \ GST_PLUGIN_SYSTEM_PATH= \ - GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(GST_PLUGINS_DIR) + GST_PLUGIN_PATH=$(GST_PLUGINS_DIR):$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext # ths core dumps of some machines have PIDs appended CLEANFILES = core.* test-registry.xml