mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
validate:launcher: Verify that Gst supression file could be found
This commit is contained in:
parent
775564187d
commit
5d1d8e6971
1 changed files with 4 additions and 1 deletions
|
@ -867,7 +867,10 @@ class GstValidateTest(Test):
|
|||
|
||||
def get_valgrind_suppressions(self):
|
||||
result = super(GstValidateTest, self).get_valgrind_suppressions()
|
||||
return result + [self.get_valgrind_suppression_file('common', 'gst.supp')]
|
||||
gst_sup = self.get_valgrind_suppression_file('common', 'gst.supp')
|
||||
if gst_sup:
|
||||
resut.append(gst_sup)
|
||||
return result
|
||||
|
||||
|
||||
class GstValidateEncodingTestInterface(object):
|
||||
|
|
Loading…
Reference in a new issue