Changeset 160448 in webkit


Ignore:
Timestamp:
Dec 11, 2013 11:03:28 AM (10 years ago)
Author:
commit-queue@webkit.org
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 <alex@igalia.com> 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):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r160446 r160448  
     12013-12-11  Alejandro G. Castro  <alex@igalia.com>
     2
     3        [GTK] Avoid double quotations when passing parameters to valgrind in gtk.py
     4        https://bugs.webkit.org/show_bug.cgi?id=125441
     5
     6        Reviewed by Martin Robinson.
     7
     8        Just avoid the double quotations when building the parameter
     9        because some versions of valgrind are not handling it correctly.
     10
     11        * Scripts/webkitpy/port/gtk.py:
     12        (GtkPort.setup_environ_for_server):
     13
    1142013-12-11  Zan Dobersek  <zdobersek@igalia.com>
    215
  • trunk/Tools/Scripts/webkitpy/port/gtk.py

    r155714 r160448  
    115115                "--gen-suppressions=all " \
    116116                "--xml=yes " \
    117                 "--xml-file=\"%s\" " \
     117                "--xml-file=%s " \
    118118                "--suppressions=%s" % (xmlfile, suppressionsfile)
    119119        return environment
Note: See TracChangeset for help on using the changeset viewer.