mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-19 08:11:16 +00:00
validate:launcher: handle spaces in transcode output path
When there are spaces in transcoding output path, then it fails. Hence adding the path in double quotes https://bugzilla.gnome.org/show_bug.cgi?id=756217
This commit is contained in:
parent
e2d2a6865f
commit
bc66079d2a
1 changed files with 1 additions and 1 deletions
|
@ -482,7 +482,7 @@ class GstValidateTranscodingTest(GstValidateTest, GstValidateEncodingTestInterfa
|
|||
def build_arguments(self):
|
||||
GstValidateTest.build_arguments(self)
|
||||
self.set_rendering_info()
|
||||
self.add_arguments(self.uri, self.dest_file)
|
||||
self.add_arguments(self.uri, '"' + self.dest_file + '"')
|
||||
|
||||
def get_current_value(self):
|
||||
if self.scenario:
|
||||
|
|
Loading…
Reference in a new issue