diff options
author | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 19:33:25 +0000 |
---|---|---|
committer | ojan@google.com <ojan@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-14 19:33:25 +0000 |
commit | c42f20260ca942b40c3687065469829d48b5c979 (patch) | |
tree | 704c0ae1a7d9651e0815b74bc68bfa9b0fa49aad /webkit | |
parent | 2d46c8462c1c9104c100ee1f3414db754b897a8f (diff) | |
download | chromium_src-c42f20260ca942b40c3687065469829d48b5c979.zip chromium_src-c42f20260ca942b40c3687065469829d48b5c979.tar.gz chromium_src-c42f20260ca942b40c3687065469829d48b5c979.tar.bz2 |
Change --pixel-tests to --no-pixel-tests so that pixel tests
are run by default.
Review URL: http://codereview.chromium.org/10753
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@5493 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/tools/layout_tests/run_webkit_tests.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/webkit/tools/layout_tests/run_webkit_tests.py b/webkit/tools/layout_tests/run_webkit_tests.py index 1875afc..a1721b3 100644 --- a/webkit/tools/layout_tests/run_webkit_tests.py +++ b/webkit/tools/layout_tests/run_webkit_tests.py @@ -224,7 +224,7 @@ class TestRunner: for i in xrange(int(self._options.num_test_shells)): shell_args = [] test_args = test_type_base.TestArguments() - if self._options.pixel_tests: + if not self._options.no_pixel_tests: png_path = os.path.join(self._options.results_directory, "png_result%s.png" % i) shell_args.append("--pixel-tests=" + png_path) @@ -234,7 +234,7 @@ class TestRunner: if self._options.new_baseline: test_args.new_baseline = self._options.new_baseline - if not self._options.pixel_tests: + if self._options.no_pixel_tests: test_args.text_baseline = True test_args.show_sources = self._options.sources @@ -516,7 +516,7 @@ def main(options, args): logging.info("Placing test results in %s" % options.results_directory) logging.info("Using %s build at %s" % (options.target, test_shell_binary_path)) - if options.pixel_tests: + if not options.no_pixel_tests: logging.info("Running pixel tests") if 'cygwin' == sys.platform: @@ -549,7 +549,7 @@ def main(options, args): test_runner = TestRunner(options, paths) test_runner.AddTestType(text_diff.TestTextDiff) test_runner.AddTestType(simplified_text_diff.SimplifiedTextDiff) - if options.pixel_tests: + if not options.no_pixel_tests: test_runner.AddTestType(image_diff.ImageDiff) has_new_failures = test_runner.Run() logging.info("Exit status: %d" % has_new_failures) @@ -557,9 +557,9 @@ def main(options, args): if '__main__' == __name__: option_parser = optparse.OptionParser() - option_parser.add_option("", "--pixel-tests", action="store_true", - default=True, - help="enable pixel-to-pixel PNG comparisons") + option_parser.add_option("", "--no-pixel-tests", action="store_true", + default=False, + help="disable pixel-to-pixel PNG comparisons") option_parser.add_option("", "--wdiff", action="store_true", default=False, help="enable word-by-word diffing") |