Changeset 230493 in webkit


Ignore:
Timestamp:
Apr 10, 2018 2:13:55 PM (6 years ago)
Author:
youenn@apple.com
Message:

webrtc/datachannel/bufferedAmountLowThreshold tests are failing on WK1
https://bugs.webkit.org/show_bug.cgi?id=184427

Reviewed by Eric Carlson.

Decrease the size of the string sent as one chunk as it may create timeouts.
Instead, we will call more often the send method untile reaching the threshold.

  • platform/mac-wk1/TestExpectations:
  • webrtc/datachannel/bufferedAmountLowThreshold-default.html:
  • webrtc/datachannel/bufferedAmountLowThreshold.html:
Location:
trunk/LayoutTests
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r230489 r230493  
     12018-04-10  Youenn Fablet  <youenn@apple.com>
     2
     3        webrtc/datachannel/bufferedAmountLowThreshold tests are failing on WK1
     4        https://bugs.webkit.org/show_bug.cgi?id=184427
     5
     6        Reviewed by Eric Carlson.
     7
     8        Decrease the size of the string sent as one chunk as it may create timeouts.
     9        Instead, we will call more often the send method untile reaching the threshold.
     10
     11        * platform/mac-wk1/TestExpectations:
     12        * webrtc/datachannel/bufferedAmountLowThreshold-default.html:
     13        * webrtc/datachannel/bufferedAmountLowThreshold.html:
     14
    1152018-04-10  Sihui Liu  <sihui_liu@apple.com>
    216
  • trunk/LayoutTests/platform/mac-wk1/TestExpectations

    r230471 r230493  
    152152webrtc/datachannel [ Pass ]
    153153webrtc/datachannel/mdns-ice-candidates.html [ Skip ]
    154 webrtc/datachannel/bufferedAmountLowThreshold.html [ Pass Failure ]
    155 webrtc/datachannel/bufferedAmountLowThreshold-default.html [ Pass Failure ]
    156154imported/w3c/web-platform-tests/webrtc/RTCPeerConnection-setLocalDescription-offer.html [ Failure ]
    157155
  • trunk/LayoutTests/webrtc/datachannel/bufferedAmountLowThreshold-default.html

    r222616 r230493  
    2424
    2525var longString = "abcdefgh";
    26 for (var cptr = 0; cptr < 14; ++cptr)
     26for (var cptr = 0; cptr < 10; ++cptr)
    2727    longString += longString;
    2828
  • trunk/LayoutTests/webrtc/datachannel/bufferedAmountLowThreshold.html

    r222616 r230493  
    2424
    2525var longString = "abcdefgh";
    26 for (var cptr = 0; cptr < 14; ++cptr)
     26for (var cptr = 0; cptr < 10; ++cptr)
    2727    longString += longString;
    2828
Note: See TracChangeset for help on using the changeset viewer.