Changeset 227935 in webkit


Ignore:
Timestamp:
Jan 31, 2018 3:22:31 PM (6 years ago)
Author:
Chris Dumez
Message:

REGRESSION (r227340): Layout Test fast/workers/worker-cloneport.html is a flaky failure
https://bugs.webkit.org/show_bug.cgi?id=182007
<rdar://problem/37005504>

Reviewed by Ryosuke Niwa.

Increase the test's timeout. The test sometimes takes more than 1 second to run and would
log a FAIL line, even though the test eventually succeeds.

  • fast/workers/worker-cloneport.html:
  • platform/mac-wk2/TestExpectations:
Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r227933 r227935  
     12018-01-31  Chris Dumez  <cdumez@apple.com>
     2
     3        REGRESSION (r227340): Layout Test fast/workers/worker-cloneport.html is a flaky failure
     4        https://bugs.webkit.org/show_bug.cgi?id=182007
     5        <rdar://problem/37005504>
     6
     7        Reviewed by Ryosuke Niwa.
     8
     9        Increase the test's timeout. The test sometimes takes more than 1 second to run and would
     10        log a FAIL line, even though the test eventually succeeds.
     11
     12        * fast/workers/worker-cloneport.html:
     13        * platform/mac-wk2/TestExpectations:
     14
    1152018-01-31  Michael Catanzaro  <mcatanzaro@igalia.com>
    216
  • trunk/LayoutTests/fast/workers/worker-cloneport.html

    r124680 r227935  
    5858        var timer = setTimeout(function() {
    5959            log("FAILURE: Received: " + itemNum + " events - expected: " + numMessages);
    60         }, 1000);
     60            reportDone();
     61        }, 8000);
    6162        evt.ports[0].onmessage = function(event) {
    6263            var done = false;
  • trunk/LayoutTests/platform/mac-wk2/TestExpectations

    r227920 r227935  
    880880webkit.org/b/181835 webrtc/captureCanvas-webrtc.html [ Pass Timeout ]
    881881
    882 webkit.org/b/182007 [ Release ] fast/workers/worker-cloneport.html [ Pass Failure ]
    883 
Note: See TracChangeset for help on using the changeset viewer.