Changeset 85344 in webkit


Ignore:
Timestamp:
Apr 29, 2011 12:09:40 PM (13 years ago)
Author:
ojan@chromium.org
Message:

2011-04-29 Ojan Vafai <ojan@chromium.org>

Reviewed by Eric Seidel.

exclude skipped tests from the summarized results
https://bugs.webkit.org/show_bug.cgi?id=59813

If we find a need fo skipped tests later, we should either create
a skipped.json file or expose this some other way. As it is, the data
is unused and is hugely bloating the size of full_results.json.

  • Scripts/webkitpy/layout_tests/layout_package/manager.py:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r85341 r85344  
     12011-04-29  Ojan Vafai  <ojan@chromium.org>
     2
     3        Reviewed by Eric Seidel.
     4
     5        exclude skipped tests from the summarized results
     6        https://bugs.webkit.org/show_bug.cgi?id=59813
     7
     8        If we find a need fo skipped tests later, we should either create
     9        a skipped.json file or expose this some other way. As it is, the data
     10        is unused and is hugely bloating the size of full_results.json.
     11
     12        * Scripts/webkitpy/layout_tests/layout_package/manager.py:
     13
    1142011-04-29  Adam Roben  <aroben@apple.com>
    215
  • trunk/Tools/Scripts/webkitpy/layout_tests/layout_package/manager.py

    r85254 r85344  
    128128        actual = [keywords[result_type]]
    129129
     130        if result_type == test_expectations.SKIP:
     131            continue
     132
    130133        test_dict = {}
    131134        if False:
Note: See TracChangeset for help on using the changeset viewer.