Changeset 139912 in webkit


Ignore:
Timestamp:
Jan 16, 2013 12:27:59 PM (11 years ago)
Author:
commit-queue@webkit.org
Message:

Please reinstate --pixel
https://bugs.webkit.org/show_bug.cgi?id=101995

Patch by Zan Dobersek <zdobersek@igalia.com> on 2013-01-16
Reviewed by Dirk Pranke.

Add the '--pixel' and '--no-pixel' options for NRWT as aliases for
the '--pixel-tests' (or '-p') and '--no-pixel-tests' options respectively.
Some developers are still used to these options that were available in the ORWT.

  • Scripts/webkitpy/layout_tests/run_webkit_tests.py:

(parse_args):

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r139902 r139912  
     12013-01-16  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        Please reinstate --pixel
     4        https://bugs.webkit.org/show_bug.cgi?id=101995
     5
     6        Reviewed by Dirk Pranke.
     7
     8        Add the '--pixel' and '--no-pixel' options for NRWT as aliases for
     9        the '--pixel-tests' (or '-p') and '--no-pixel-tests' options respectively.
     10        Some developers are still used to these options that were available in the ORWT.
     11
     12        * Scripts/webkitpy/layout_tests/run_webkit_tests.py:
     13        (parse_args):
     14
    1152013-01-16  Eric Seidel  <eric@webkit.org>
    216
  • trunk/Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

    r137943 r139912  
    134134
    135135    option_group_definitions.append(("Results Options", [
    136         optparse.make_option("-p", "--pixel-tests", action="store_true",
     136        optparse.make_option("-p", "--pixel", "--pixel-tests", action="store_true",
    137137            dest="pixel_tests", help="Enable pixel-to-pixel PNG comparisons"),
    138         optparse.make_option("--no-pixel-tests", action="store_false",
     138        optparse.make_option("--no-pixel", "--no-pixel-tests", action="store_false",
    139139            dest="pixel_tests", help="Disable pixel-to-pixel PNG comparisons"),
    140140        optparse.make_option("--no-sample-on-timeout", action="store_false",
Note: See TracChangeset for help on using the changeset viewer.