Changeset 145764 in webkit


Ignore:
Timestamp:
Mar 13, 2013 3:34:12 PM (11 years ago)
Author:
abarth@webkit.org
Message:

run-perf-tests should support content_shell
https://bugs.webkit.org/show_bug.cgi?id=112291

Reviewed by Eric Seidel.

  • Scripts/webkitpy/performance_tests/perftestsrunner.py:

(PerfTestsRunner._parse_args):

Location:
trunk/Tools
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r145759 r145764  
     12013-03-13  Adam Barth  <abarth@webkit.org>
     2
     3        run-perf-tests should support content_shell
     4        https://bugs.webkit.org/show_bug.cgi?id=112291
     5
     6        Reviewed by Eric Seidel.
     7
     8        * Scripts/webkitpy/performance_tests/perftestsrunner.py:
     9        (PerfTestsRunner._parse_args):
     10
    1112013-03-13  Oliver Hunt  <oliver@apple.com>
    212
  • trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py

    r145173 r145764  
    235235        re.compile(r'^\[WARNING:proxy_service.cc'),
    236236        re.compile(r'^\[INFO:'),
     237        # These stderr messages come from content_shell on chromium-linux.
     238        re.compile(r'INFO:SkFontHost_fontconfig.cpp'),
     239        re.compile(r'Running without the SUID sandbox'),
    237240    ]
    238241
  • trunk/Tools/Scripts/webkitpy/performance_tests/perftestsrunner.py

    r145173 r145764  
    128128                default=[], help="Additional command line flag to pass to DumpRenderTree "
    129129                     "Specify multiple times to add multiple flags."),
     130            optparse.make_option("--driver-name", type="string",
     131                help="Alternative DumpRenderTree binary to use"),
    130132            optparse.make_option("--repeat", default=1, type="int",
    131133                help="Specify number of times to run test set (default: 1)."),
Note: See TracChangeset for help on using the changeset viewer.