Tools/ChangeLog

 12013-01-16 Zan Dobersek <[email protected]>
 2
 3 Please reinstate --pixel
 4 https://bugs.webkit.org/show_bug.cgi?id=101995
 5
 6 Reviewed by NOBODY (OOPS!).
 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 Jochen Eisinger <[email protected]>
216
317 [chromium] add title text direction attribute to TestRunner

Tools/Scripts/webkitpy/layout_tests/run_webkit_tests.py

@@def parse_args(args):
133133 ]))
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",
141141 dest="sample_on_timeout", help="Don't run sample on timeout (Mac OS X only)"),