From bc66079d2a515f94dfdead4595a8e217964663e8 Mon Sep 17 00:00:00 2001 From: Vineeth T M Date: Thu, 8 Oct 2015 10:19:39 +0900 Subject: [PATCH] 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 --- validate/launcher/apps/gstvalidate.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validate/launcher/apps/gstvalidate.py b/validate/launcher/apps/gstvalidate.py index 6659322507..f0ad749ca2 100644 --- a/validate/launcher/apps/gstvalidate.py +++ b/validate/launcher/apps/gstvalidate.py @@ -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: