mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-13 10:55:34 +00:00
tests: parse-launch: looks clean nowadays, so re-enable for valgrind
Also, the valgrind bits weren't hooked up properly anyway, checking the wrong define.
This commit is contained in:
parent
e04d2f230d
commit
accde6ea16
2 changed files with 2 additions and 13 deletions
|
@ -234,7 +234,6 @@ libs_gstnettimeprovider_LDADD = \
|
|||
VALGRIND_TO_FIX = \
|
||||
gst/gstinfo \
|
||||
gst/gsttracerrecord \
|
||||
pipelines/parse-launch \
|
||||
tools/gstinspect
|
||||
|
||||
VALGRIND_IGNORE = \
|
||||
|
|
|
@ -22,11 +22,6 @@
|
|||
# include "config.h"
|
||||
#endif
|
||||
|
||||
#ifdef HAVE_VALGRIND_H
|
||||
# include <valgrind/valgrind.h>
|
||||
# include <valgrind/memcheck.h>
|
||||
#endif
|
||||
|
||||
#include <gst/check/gstcheck.h>
|
||||
|
||||
#define GST_TYPE_PARSE_TEST_ELEMENT (gst_parse_test_element_get_type())
|
||||
|
@ -397,19 +392,14 @@ static const gchar *leaking_failures[] = {
|
|||
NULL
|
||||
};
|
||||
|
||||
/* These don't seem to leak any longer? */
|
||||
GST_START_TEST (leaking_fail_pipes)
|
||||
{
|
||||
const gchar **s;
|
||||
|
||||
for (s = leaking_failures; *s != NULL; s++) {
|
||||
/* Uncomment if you want to try fixing the leaks */
|
||||
#if 0
|
||||
g_print ("Trying pipe: %s\n", *s);
|
||||
GST_INFO ("Trying pipe: %s", *s);
|
||||
expected_fail_pipe (*s);
|
||||
#endif
|
||||
#ifdef HAVE_VALGRIND_H
|
||||
VALGRIND_DO_LEAK_CHECK;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue