From 0a56447bcc50e8767773e627831438d6069c60de Mon Sep 17 00:00:00 2001 From: Thibault Saunier Date: Sat, 6 Apr 2019 11:40:32 -0300 Subject: [PATCH] validate:launcher: Add python suppression files --- validate/launcher/utils.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/validate/launcher/utils.py b/validate/launcher/utils.py index 2b6356dc59..96acb10e9c 100644 --- a/validate/launcher/utils.py +++ b/validate/launcher/utils.py @@ -347,7 +347,10 @@ def get_gst_build_valgrind_suppressions(): "gst-devtools/validate/data/gstvalidate.supp", "libnice/tests/libnice.supp", "libsoup/tests/libsoup.supp", - "glib/glib.supp"]: + "glib/glib.supp", + "gst-python/testsuite/gstpython.supp", + "gst-python/testsuite/python.supp", + ]: suppression = os.path.join(config.SRCDIR, "subprojects", suppression_path) if os.path.exists(suppression): get_gst_build_valgrind_suppressions.data.append(suppression)