mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
tests: allow running state tests for all elements
Now one can use GST_NO_STATE_IGNORE_ELEMENTS=1 make generic/states.check to try elements that would normaly be skipped.
This commit is contained in:
parent
9b85b13d80
commit
4e379a4e59
2 changed files with 3 additions and 3 deletions
|
@ -8,7 +8,7 @@ REGISTRY_ENVIRONMENT = \
|
||||||
|
|
||||||
TESTS_ENVIRONMENT = \
|
TESTS_ENVIRONMENT = \
|
||||||
CK_DEFAULT_TIMEOUT=120 \
|
CK_DEFAULT_TIMEOUT=120 \
|
||||||
STATE_IGNORE_ELEMENTS="$(STATE_IGNORE_ELEMENTS)" \
|
GST_STATE_IGNORE_ELEMENTS="$(STATE_IGNORE_ELEMENTS)" \
|
||||||
$(REGISTRY_ENVIRONMENT) \
|
$(REGISTRY_ENVIRONMENT) \
|
||||||
GST_PLUGIN_SYSTEM_PATH= \
|
GST_PLUGIN_SYSTEM_PATH= \
|
||||||
GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(GST_PLUGINS_DIR) \
|
GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/sys:$(top_builddir)/ext:$(GST_PLUGINS_DIR) \
|
||||||
|
|
|
@ -39,8 +39,8 @@ setup (void)
|
||||||
const gchar *STATE_IGNORE_ELEMENTS = NULL;
|
const gchar *STATE_IGNORE_ELEMENTS = NULL;
|
||||||
|
|
||||||
GST_DEBUG ("getting elements for package %s", PACKAGE);
|
GST_DEBUG ("getting elements for package %s", PACKAGE);
|
||||||
STATE_IGNORE_ELEMENTS = g_getenv ("STATE_IGNORE_ELEMENTS");
|
STATE_IGNORE_ELEMENTS = g_getenv ("GST_STATE_IGNORE_ELEMENTS");
|
||||||
if (STATE_IGNORE_ELEMENTS) {
|
if (!g_getenv ("GST_NO_STATE_IGNORE_ELEMENTS") && STATE_IGNORE_ELEMENTS) {
|
||||||
GST_DEBUG ("Will ignore element factories: '%s'", STATE_IGNORE_ELEMENTS);
|
GST_DEBUG ("Will ignore element factories: '%s'", STATE_IGNORE_ELEMENTS);
|
||||||
ignorelist = g_strsplit (STATE_IGNORE_ELEMENTS, " ", 0);
|
ignorelist = g_strsplit (STATE_IGNORE_ELEMENTS, " ", 0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue