Changeset 62997 in webkit


Ignore:
Timestamp:
Jul 9, 2010 2:32:40 PM (14 years ago)
Author:
ajwong@chromium.org
Message:

Reviewed by David Levin.

rebaseline_chromium_webkit_tests missing --use_drt option on linux
https://bugs.webkit.org/show_bug.cgi?id=41985

This adds in the --use_drt option for rebaseline_chromium_webkit_tests
so that it works on linux. This is essentially a "compile-fix" for the
script.

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

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r62991 r62997  
     12010-07-09  Albert J. Wong  <ajwong@chromium.org>
     2
     3        Reviewed by David Levin.
     4
     5        rebaseline_chromium_webkit_tests missing --use_drt option on linux
     6        https://bugs.webkit.org/show_bug.cgi?id=41985
     7
     8        This adds in the --use_drt option for rebaseline_chromium_webkit_tests
     9        so that it works on linux. This is essentially a "compile-fix" for the
     10        script.
     11
     12        * Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py:
     13
    1142010-07-09  Nico Weber  <thakis@chromium.org>
    215
  • trunk/WebKitTools/Scripts/webkitpy/layout_tests/rebaseline_chromium_webkit_tests.py

    r62236 r62997  
    917917    option_parser.add_option('-d', '--html_directory',
    918918                             default='',
    919                              help=('The directory that stores the results for'
    920                                    ' rebaselining comparison.'))
     919                             help=('The directory that stores the results for '
     920                                   'rebaselining comparison.'))
     921
     922    option_parser.add_option('', '--use_drt',
     923                             action='store_true',
     924                             default=False,
     925                             help=('Use ImageDiff from DumpRenderTree instead '
     926                                   'of image_diff for pixel tests.'))
    921927
    922928    option_parser.add_option('', '--target-platform',
Note: See TracChangeset for help on using the changeset viewer.