summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThibault Saunier <thibault.saunier@collabora.com>2012-06-15 16:54:43 -0400
committerThibault Saunier <thibault.saunier@collabora.com>2012-06-19 12:23:51 -0400
commitddfcd50b7e92b57aa796ae860d92d6fa459a505a (patch)
tree7782e0fef2b068c5d33c5ca7d0e46ec3f65e46ee
parent36a3cb5f96cdeba361d22c31e3d0e3995843374d (diff)
gsttest: Remove gst debug log from outputfiles
-rw-r--r--lib/insanity-gst/insanitygsttest.c7
1 files changed, 1 insertions, 6 deletions
diff --git a/lib/insanity-gst/insanitygsttest.c b/lib/insanity-gst/insanitygsttest.c
index 97ee1c6..76edf8f 100644
--- a/lib/insanity-gst/insanitygsttest.c
+++ b/lib/insanity-gst/insanitygsttest.c
@@ -60,14 +60,11 @@ init_gstreamer (void)
static gboolean
insanity_gst_test_setup (InsanityTest * test)
{
- const char *debuglog, *registry;
+ const char *registry;
if (!INSANITY_TEST_CLASS (insanity_gst_test_parent_class)->setup (test))
return FALSE;
- /* Set GST_DEBUG_FILE to the target filename */
- debuglog = insanity_test_get_output_filename (test, "gst-debug-log");
- g_setenv ("GST_DEBUG_FILE", debuglog, TRUE);
/* Set GST_REGISTRY to the target filename */
registry = insanity_test_get_output_filename (test, "gst-registry");
@@ -119,8 +116,6 @@ insanity_gst_test_init (InsanityGstTest * gsttest)
gsttest->priv = priv;
/* Add our own items, etc */
- insanity_test_add_output_file (test, "gst-debug-log",
- "The GStreamer debug log", TRUE);
insanity_test_add_output_file (test, "gst-registry",
"The GStreamer registry file", TRUE);
}