tests: allow running state tests for all elements
authorStefan Kost <ensonic@users.sf.net>
Thu, 9 Sep 2010 19:33:36 +0000 (22:33 +0300)
committerStefan Kost <ensonic@users.sf.net>
Thu, 9 Sep 2010 19:33:36 +0000 (22:33 +0300)
Now one can use GST_NO_STATE_IGNORE_ELEMENTS=1 make generic/states.check
to try elements that would normaly be skipped.

tests/check/Makefile.am
tests/check/generic/states.c

index 76af725..a7eaba9 100644 (file)
@@ -10,7 +10,7 @@ TESTS_ENVIRONMENT = \
        GST_PLUGIN_SYSTEM_PATH=                                 \
        GST_PLUGIN_PATH=$(top_builddir)/gst:$(top_builddir)/ext:$(top_builddir)/sys:$(GSTPB_PLUGINS_DIR):$(GST_PLUGINS_DIR)  \
        GST_PLUGIN_LOADING_WHITELIST="gstreamer@$(GST_PLUGINS_DIR):gst-plugins-base@$(GSTPB_PLUGINS_DIR):gst-plugins-ugly@$(top_builddir)" \
-       STATE_IGNORE_ELEMENTS="siddec dvdreadsrc cdiocddasrc"
+       GST_STATE_IGNORE_ELEMENTS="siddec dvdreadsrc cdiocddasrc"
 
 # ths core dumps of some machines have PIDs appended
 CLEANFILES = core.* test-registry.*
index 62f557a..4d80acc 100644 (file)
@@ -39,8 +39,8 @@ setup ()
   const gchar *STATE_IGNORE_ELEMENTS = NULL;
 
   GST_DEBUG ("getting elements for package %s", PACKAGE);
-  STATE_IGNORE_ELEMENTS = g_getenv ("STATE_IGNORE_ELEMENTS");
-  if (STATE_IGNORE_ELEMENTS) {
+  STATE_IGNORE_ELEMENTS = g_getenv ("GST_STATE_IGNORE_ELEMENTS");
+  if (!g_getenv ("GST_NO_STATE_IGNORE_ELEMENTS") && STATE_IGNORE_ELEMENTS) {
     GST_DEBUG ("Will ignore element factories: '%s'", STATE_IGNORE_ELEMENTS);
     ignorelist = g_strsplit (STATE_IGNORE_ELEMENTS, " ", 0);
   }