Changeset 58062 in webkit


Ignore:
Timestamp:
Apr 21, 2010 11:38:27 PM (14 years ago)
Author:
eric@webkit.org
Message:

2010-04-21 Eric Seidel <eric@webkit.org>

Unreviewed. Fix typo in my previous fix attempt.

REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
https://bugs.webkit.org/show_bug.cgi?id=37765

More on-the-bot debugging, sigh. I wish I had a local build.

  • Scripts/webkitpy/layout_tests/port/base.py:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r58060 r58062  
     12010-04-21  Eric Seidel  <eric@webkit.org>
     2
     3        Unreviewed.  Fix typo in my previous fix attempt.
     4
     5        REGRESSION(57531): the commit-queue still hates Tor Arne Vestbø
     6        https://bugs.webkit.org/show_bug.cgi?id=37765
     7
     8        More on-the-bot debugging, sigh.  I wish I had a local build.
     9
     10        * Scripts/webkitpy/layout_tests/port/base.py:
     11
    1122010-04-21  Eric Seidel  <eric@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/port/base.py

    r58060 r58062  
    546546        return result
    547547
    548     def _wdiff_command(self):
     548    def _wdiff_command(self, actual_filename, expected_filename):
    549549        executable = self._path_to_wdiff()
    550550        return [executable,
     
    565565            return ""
    566566        try:
    567             return self._executive.run_command(self._wdiff_command())
     567            cmd = self._wdiff_command(actual_filename, expected_filename)
     568            return self._executive.run_command(cmd)
    568569        except OSError, e:
    569570            # If the system is missing wdiff stop trying.
Note: See TracChangeset for help on using the changeset viewer.