Changeset 206910 in webkit


Ignore:
Timestamp:
Oct 7, 2016 5:50:21 AM (8 years ago)
Author:
adam.bergkvist@ericsson.com
Message:

WebRTC: Test gardening
https://bugs.webkit.org/show_bug.cgi?id=163106

Reviewed by Philippe Normand.

  • fast/mediastream/RTCPeerConnection-add-removeTrack-expected.txt:

Update expected results to include webkit prefix on RTCPeerConnection name. (Not GTK+
specific.)

  • platform/gtk/TestExpectations:

Skip some tests since the GTK+ MediaPlayer, used with MediaStreams, isn't capable enough.

Location:
trunk/LayoutTests
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/LayoutTests/ChangeLog

    r206896 r206910  
     12016-10-07  Adam Bergkvist  <adam.bergkvist@ericsson.com>
     2
     3        WebRTC: Test gardening
     4        https://bugs.webkit.org/show_bug.cgi?id=163106
     5
     6        Reviewed by Philippe Normand.
     7
     8        * fast/mediastream/RTCPeerConnection-add-removeTrack-expected.txt:
     9        Update expected results to include webkit prefix on RTCPeerConnection name. (Not GTK+
     10        specific.)
     11        * platform/gtk/TestExpectations:
     12        Skip some tests since the GTK+ MediaPlayer, used with MediaStreams, isn't capable enough.
     13
    1142016-10-06  Myles C. Maxfield  <mmaxfield@apple.com>
    215
  • trunk/LayoutTests/fast/mediastream/RTCPeerConnection-add-removeTrack-expected.txt

    r203509 r206910  
    66Test bad addTrack() arguments
    77PASS pc.addTrack() threw exception TypeError: Not enough arguments.
    8 PASS pc.addTrack(null) threw exception TypeError: Argument 1 ('track') to RTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
    9 PASS pc.addTrack({}) threw exception TypeError: Argument 1 ('track') to RTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
    10 PASS pc.addTrack(track, null) threw exception TypeError: Argument 2 ('streams') to RTCPeerConnection.addTrack must be an instance of MediaStream.
    11 PASS pc.addTrack(track, {}) threw exception TypeError: Argument 2 ('streams') to RTCPeerConnection.addTrack must be an instance of MediaStream.
    12 PASS pc.addTrack(track, stream, null) threw exception TypeError: Argument 3 ('streams') to RTCPeerConnection.addTrack must be an instance of MediaStream.
     8PASS pc.addTrack(null) threw exception TypeError: Argument 1 ('track') to webkitRTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
     9PASS pc.addTrack({}) threw exception TypeError: Argument 1 ('track') to webkitRTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
     10PASS pc.addTrack(track, null) threw exception TypeError: Argument 2 ('streams') to webkitRTCPeerConnection.addTrack must be an instance of MediaStream.
     11PASS pc.addTrack(track, {}) threw exception TypeError: Argument 2 ('streams') to webkitRTCPeerConnection.addTrack must be an instance of MediaStream.
     12PASS pc.addTrack(track, stream, null) threw exception TypeError: Argument 3 ('streams') to webkitRTCPeerConnection.addTrack must be an instance of MediaStream.
    1313
    1414Test bad removeTrack() arguments
    1515PASS pc.removeTrack() threw exception TypeError: Not enough arguments.
    16 PASS pc.removeTrack(null) threw exception TypeError: Argument 1 ('sender') to RTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
    17 PASS pc.removeTrack({}) threw exception TypeError: Argument 1 ('sender') to RTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
     16PASS pc.removeTrack(null) threw exception TypeError: Argument 1 ('sender') to webkitRTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
     17PASS pc.removeTrack({}) threw exception TypeError: Argument 1 ('sender') to webkitRTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
    1818
    1919PASS pc.getSenders().length is 0
     
    4444removeTrack() with 'foreign' sender must be ignored (not throw)
    4545PASS pc.removeTrack(senderFromPc2) did not throw exception.
    46 PASS pc.addTrack(null); threw exception TypeError: Argument 1 ('track') to RTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
    47 PASS pc.addTrack(undefined); threw exception TypeError: Argument 1 ('track') to RTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
    48 PASS pc.removeTrack(null); threw exception TypeError: Argument 1 ('sender') to RTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
    49 PASS pc.removeTrack(undefined); threw exception TypeError: Argument 1 ('sender') to RTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
     46PASS pc.addTrack(null); threw exception TypeError: Argument 1 ('track') to webkitRTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
     47PASS pc.addTrack(undefined); threw exception TypeError: Argument 1 ('track') to webkitRTCPeerConnection.addTrack must be an instance of MediaStreamTrack.
     48PASS pc.removeTrack(null); threw exception TypeError: Argument 1 ('sender') to webkitRTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
     49PASS pc.removeTrack(undefined); threw exception TypeError: Argument 1 ('sender') to webkitRTCPeerConnection.removeTrack must be an instance of RTCRtpSender.
    5050PASS successfullyParsed is true
    5151
  • trunk/LayoutTests/platform/gtk/TestExpectations

    r206883 r206910  
    336336webkit.org/b/151344 fast/mediastream/MediaStream-add-remove-tracks.html [ Skip ]
    337337webkit.org/b/79203 fast/mediastream/mock-media-source.html [ Skip ]
     338webkit.org/b/160996 fast/mediastream/MediaStream-video-element-video-tracks-disabled-then-enabled.html [ Skip ]
     339webkit.org/b/160996 fast/mediastream/MediaStream-video-element-video-tracks-disabled.html [ Skip ]
     340webkit.org/b/160996 fast/mediastream/apply-constraints-advanced.html [ Skip ]
     341webkit.org/b/160996 fast/mediastream/apply-constraints-audio.html [ Skip ]
     342webkit.org/b/160996 fast/mediastream/apply-constraints-video.html [ Skip ]
    338343
    339344# Proximity Events is not supported.
Note: See TracChangeset for help on using the changeset viewer.