Title: [160448] trunk/Tools
Revision
160448
Author
[email protected]
Date
2013-12-11 11:03:28 -0800 (Wed, 11 Dec 2013)

Log Message

[GTK] Avoid double quotations when passing parameters to valgrind in gtk.py
https://bugs.webkit.org/show_bug.cgi?id=125441

Patch by Alejandro G. Castro <[email protected]> on 2013-12-11
Reviewed by Martin Robinson.

Just avoid the double quotations when building the parameter
because some versions of valgrind are not handling it correctly.

* Scripts/webkitpy/port/gtk.py:
(GtkPort.setup_environ_for_server):

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (160447 => 160448)


--- trunk/Tools/ChangeLog	2013-12-11 18:58:23 UTC (rev 160447)
+++ trunk/Tools/ChangeLog	2013-12-11 19:03:28 UTC (rev 160448)
@@ -1,3 +1,16 @@
+2013-12-11  Alejandro G. Castro  <[email protected]>
+
+        [GTK] Avoid double quotations when passing parameters to valgrind in gtk.py
+        https://bugs.webkit.org/show_bug.cgi?id=125441
+
+        Reviewed by Martin Robinson.
+
+        Just avoid the double quotations when building the parameter
+        because some versions of valgrind are not handling it correctly.
+
+        * Scripts/webkitpy/port/gtk.py:
+        (GtkPort.setup_environ_for_server):
+
 2013-12-11  Zan Dobersek  <[email protected]>
 
         [GTK] Enable Battery Status API

Modified: trunk/Tools/Scripts/webkitpy/port/gtk.py (160447 => 160448)


--- trunk/Tools/Scripts/webkitpy/port/gtk.py	2013-12-11 18:58:23 UTC (rev 160447)
+++ trunk/Tools/Scripts/webkitpy/port/gtk.py	2013-12-11 19:03:28 UTC (rev 160448)
@@ -114,7 +114,7 @@
                 "--undef-value-errors=no " \
                 "--gen-suppressions=all " \
                 "--xml=yes " \
-                "--xml-file=\"%s\" " \
+                "--xml-file=%s " \
                 "--suppressions=%s" % (xmlfile, suppressionsfile)
         return environment
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to