Changeset 161519 in webkit


Ignore:
Timestamp:
Jan 8, 2014 1:38:42 PM (10 years ago)
Author:
zandobersek@gmail.com
Message:

Unreviewed, rolling out r161517.
http://trac.webkit.org/changeset/161517
https://bugs.webkit.org/show_bug.cgi?id=126659

The fix didn't completely remove the problem and is now
standing in the way of the rollout of the offending patch
(Requested by zdobersek on #webkit).

Patch by Commit Queue <commit-queue@webkit.org> on 2014-01-08

  • Scripts/webkitpy/port/gtk.py:

(GtkPort.init):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r161517 r161519  
     12014-01-08  Commit Queue  <commit-queue@webkit.org>
     2
     3        Unreviewed, rolling out r161517.
     4        http://trac.webkit.org/changeset/161517
     5        https://bugs.webkit.org/show_bug.cgi?id=126659
     6
     7        The fix didn't completely remove the problem and is now
     8        standing in the way of the rollout of the offending patch
     9        (Requested by zdobersek on #webkit).
     10
     11        * Scripts/webkitpy/port/gtk.py:
     12        (GtkPort.__init__):
     13
    1142014-01-08  Zan Dobersek  <zdobersek@igalia.com>
    215
  • trunk/Tools/Scripts/webkitpy/port/gtk.py

    r161517 r161519  
    4848        super(GtkPort, self).__init__(*args, **kwargs)
    4949        self._pulseaudio_sanitizer = PulseAudioSanitizer()
    50 
    51         if self.get_option("leaks"):
    52             self._leakdetector = LeakDetectorValgrind(self._filesystem, self.results_directory())
     50        self._leakdetector = LeakDetectorValgrind(self._filesystem, self.results_directory())
     51
     52        if self.get_option("leaks"):
    5353            if not self.get_option("wrapper"):
    5454                raise ValueError('use --wrapper=\"valgrind\" for memory leak detection on GTK')
Note: See TracChangeset for help on using the changeset viewer.