Changeset 120823 in webkit


Ignore:
Timestamp:
Jun 20, 2012 8:09:19 AM (12 years ago)
Author:
tomz@codeaurora.org
Message:

Import themaninblue.com/experiment/AnimationBenchmark/ as performance tests
https://bugs.webkit.org/show_bug.cgi?id=78789

Reviewed by Ryosuke Niwa.

PerformanceTests:

Added PerfTestRunner fixture around it.

  • Animation/balls.html: Added.

Tools:

Updated parser to include fps as a valid unit.

  • Scripts/webkitpy/performance_tests/perftest.py:

(PerfTest):
(PerfTest.parse_output):

Location:
trunk
Files:
2 added
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/PerformanceTests/ChangeLog

    r120618 r120823  
     12012-06-20  Tom Zakrajsek  <tomz@codeaurora.org>
     2
     3        Import themaninblue.com/experiment/AnimationBenchmark/ as performance tests
     4        https://bugs.webkit.org/show_bug.cgi?id=78789
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Added PerfTestRunner fixture around it.
     9
     10        * Animation/balls.html: Added.
     11
    1122012-06-18  Ilya Tikhonovsky  <loislo@chromium.org>
    213
  • trunk/Tools/ChangeLog

    r120821 r120823  
     12012-06-20  Tom Zakrajsek  <tomz@codeaurora.org>
     2
     3        Import themaninblue.com/experiment/AnimationBenchmark/ as performance tests
     4        https://bugs.webkit.org/show_bug.cgi?id=78789
     5
     6        Reviewed by Ryosuke Niwa.
     7
     8        Updated parser to include fps as a valid unit.
     9
     10        * Scripts/webkitpy/performance_tests/perftest.py:
     11        (PerfTest):
     12        (PerfTest.parse_output):
     13
    1142012-06-20  Balazs Ankes  <bank@inf.u-szeged.hu>
    215
  • trunk/Tools/Scripts/webkitpy/performance_tests/perftest.py

    r120699 r120823  
    9696        re.compile(r'^Ignoring warm-up '),
    9797        re.compile(r'^Info:'),
    98         re.compile(r'^\d+(.\d+)?(\s*(runs\/s|ms))?$'),
     98        re.compile(r'^\d+(.\d+)?(\s*(runs\/s|ms|fps))?$'),
    9999        # Following are for handle existing test like Dromaeo
    100100        re.compile(re.escape("""main frame - has 1 onunload handler(s)""")),
     
    136136            if not self._should_ignore_line_in_parser_test_result(line):
    137137                test_failed = True
    138                 _log.error(line)
     138                _log.error("PerfTest can't parse line [" + line + "]")
    139139
    140140        if test_failed or set(self._statistics_keys) != set(results.keys()):
Note: See TracChangeset for help on using the changeset viewer.