Changeset 57833 in webkit


Ignore:
Timestamp:
Apr 19, 2010 1:35:39 PM (14 years ago)
Author:
dpranke@chromium.org
Message:

2010-04-19 Dirk Pranke <dpranke@chromium.org>

Reviewed by Eric Seidel.

Fix a typo in the rebaselining tool that causes us to use "debug"
instead of "Debug" in a directory path, which fails on platforms with
case-sensitive filesystems.

https://bugs.webkit.org/show_bug.cgi?id=37819

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r57831 r57833  
     12010-04-19  Dirk Pranke  <dpranke@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        Fix a typo in the rebaselining tool that causes us to use "debug"
     6        instead of "Debug" in a directory path, which fails on platforms with
     7        case-sensitive filesystems.
     8
     9        https://bugs.webkit.org/show_bug.cgi?id=37819
     10
     11        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
     12
    1132010-04-19  Dirk Pranke  <dpranke@chromium.org>
    214
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py

    r57828 r57833  
    10331033    if not port_obj.check_image_diff(override_step=None, logging=False):
    10341034        _log.debug('No release version image diff binary found.')
    1035         options.configuration = "debug"
     1035        options.configuration = "Debug"
    10361036        port_obj = port.get(None, options)
    10371037    else:
Note: See TracChangeset for help on using the changeset viewer.