Changeset 201130 in webkit


Ignore:
Timestamp:
May 19, 2016 1:08:30 AM (8 years ago)
Author:
yoav@yoav.ws
Message:

REGRESSION (r200887): LayoutTest http/tests/performance/performance-resource-timing-cached-entries.html is flaky
https://bugs.webkit.org/show_bug.cgi?id=157816

Reviewed by Alexey Proskuryakov.

Mark the test as flaky, and add console logs to try to figure out the cause for flakiness.

  • TestExpectations: Mark the test as flaky.
  • http/tests/performance/performance-resource-timing-cached-entries.html: Add prints to better identify the flakiness root cause.
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r201109 r201130  
     12016-05-19  Yoav Weiss  <yoav@yoav.ws>
     2
     3        REGRESSION (r200887): LayoutTest http/tests/performance/performance-resource-timing-cached-entries.html is flaky
     4        https://bugs.webkit.org/show_bug.cgi?id=157816
     5
     6        Reviewed by Alexey Proskuryakov.
     7
     8        Mark the test as flaky, and add console logs to try to figure out the cause for flakiness.
     9
     10        * TestExpectations: Mark the test as flaky.
     11        * http/tests/performance/performance-resource-timing-cached-entries.html: Add prints to better identify the flakiness root cause.
     12
    1132016-05-18  Jer Noble  <jer.noble@apple.com>
    214
     
    26782690
    26792691        Remove failure expectation for passing tests, move some to more specific ports, and remove expectations
    2680                 for tests that are no longer in the tree.
     2692        for tests that are no longer in the tree.
    26812693
    26822694        * platform/ios-simulator-wk1/TestExpectations:
     
    42164228        Unreviewed test gardening.
    42174229
    4218                 I evaluated all of the unexpected passes from ios-simulator-wk2 and removed failure
    4219                 expectations where appropriate. Some of the tests only pass on wk2, so some expectations
    4220                 were moved to the ios-simulator-wk1 file.
     4230        I evaluated all of the unexpected passes from ios-simulator-wk2 and removed failure
     4231        expectations where appropriate. Some of the tests only pass on wk2, so some expectations
     4232        were moved to the ios-simulator-wk1 file.
    42214233
    42224234        * platform/ios-simulator-wk1/TestExpectations:
  • trunk/LayoutTests/TestExpectations

    r200997 r201130  
    979979
    980980webkit.org/b/157589 fast/text-autosizing/ios/text-autosizing-after-back.html [ Pass Timeout ]
     981
     982webkit.org/b/157816 http/tests/performance/performance-resource-timing-cached-entries.html [ Pass Failure ]
     983
  • trunk/LayoutTests/http/tests/performance/performance-resource-timing-cached-entries-expected.txt

    r200887 r201130  
     1CONSOLE MESSAGE: line 11: current entries: 0
     2CONSOLE MESSAGE: line 20: entry: http://127.0.0.1:8000/resources/js-test-pre.js
     3CONSOLE MESSAGE: line 20: entry: http://127.0.0.1:8000/resources/square100.png
     4CONSOLE MESSAGE: line 20: entry: http://127.0.0.1:8000/resources/square100.png
    15PASS foundResource is 2
    26
  • trunk/LayoutTests/http/tests/performance/performance-resource-timing-cached-entries.html

    r200887 r201130  
    88        testRunner.waitUntilDone();
    99    }
     10    if (window.performance)
     11        console.log("current entries: " + performance.getEntriesByType('resource').length);
    1012</script>
    1113<script src="../../resources/js-test-pre.js"></script>
     
    1618        var resources = performance.getEntriesByType('resource');
    1719        for (var i = 0; i < resources.length; ++i) {
     20            console.log("entry: " + resources[i].name);
    1821            if (resources[i].name.indexOf("square") != -1)
    1922                ++foundResource;
Note: See TracChangeset for help on using the changeset viewer.