Skip to content
This repository has been archived by the owner on Aug 4, 2022. It is now read-only.

Commit

Permalink
Bug 1611449 - Alter order of expecations for MediaRecorder-no-sink.ht…
Browse files Browse the repository at this point in the history
…tps.html and MediaRecorder-peerconnection.https.html on release_or_beta. r=jgraham

Rule for Beta and Release on Android must be declared before general Android
one because first matching rule gets applied.

Differential Revision: https://phabricator.services.mozilla.com/D61099
  • Loading branch information
Archaeopteryx committed Jan 27, 2020
1 parent 522646a commit 40485c6
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 22 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[MediaRecorder-no-sink.https.html]
expected:
if os == "android": TIMEOUT
if release_or_beta and (os == "android"): ["OK", "TIMEOUT"]
if os == "android": TIMEOUT

[PeerConnection MediaRecorder records video from PeerConnection without sinks]
expected:
if os == "android": TIMEOUT
if release_or_beta and (os == "android"): ["PASS", "TIMEOUT"]
if os == "android": TIMEOUT

[PeerConnection MediaRecorder records audio/video from PeerConnection without sinks]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

Original file line number Diff line number Diff line change
@@ -1,106 +1,106 @@
[MediaRecorder-peerconnection.https.html]
expected:
if os == "android": TIMEOUT
if release_or_beta and (os == "android"): ["TIMEOUT", "ERROR"]
if os == "android": TIMEOUT
ERROR

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":false,"audio":true} with format [passthrough\].]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "TIMEOUT"]
if os == "android": NOTRUN

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":false,"audio":true} with format video/webm;codecs=vp9.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":false,"audio":true} with format video/webm;codecs=vp8.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":true,"audio":false} with format video/webm;codecs=vp8.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

[PeerConnection MediaRecorder receives data after onstart, {"video":true,"audio":false} with format video/webm;codecs=vp9.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder receives data after onstart, {"video":true,"audio":true} with format video/webm;codecs=vp8.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder receives data after onstart, {"video":true,"audio":false} with format video/webm;codecs=vp8.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

[PeerConnection MediaRecorder receives data after onstart, {"video":true,"audio":false} with format [passthrough\].]
expected:
if os == "android": TIMEOUT
if release_or_beta and (os == "android"): ["PASS", "TIMEOUT"]
if os == "android": TIMEOUT

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":true,"audio":true} with format video/webm;codecs=vp8.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":true,"audio":true} with format [passthrough\].]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

[PeerConnection MediaRecorder receives data after onstart, {"video":false,"audio":true} with format video/webm;codecs=vp8.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder receives data after onstart, {"video":false,"audio":true} with format video/webm;codecs=vp9.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":true,"audio":true} with format video/webm;codecs=vp9.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder receives data after onstart, {"video":true,"audio":true} with format [passthrough\].]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":true,"audio":false} with format [passthrough\].]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

[PeerConnection MediaRecorder receives data after onstart, {"video":true,"audio":true} with format video/webm;codecs=vp9.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder gets ondata on stopping recorded tracks {"video":true,"audio":false} with format video/webm;codecs=vp9.]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["FAIL", "NOTRUN"]
if os == "android": NOTRUN
FAIL

[PeerConnection MediaRecorder receives data after onstart, {"video":false,"audio":true} with format [passthrough\].]
expected:
if os == "android": NOTRUN
if release_or_beta and (os == "android"): ["PASS", "NOTRUN"]
if os == "android": NOTRUN

0 comments on commit 40485c6

Please sign in to comment.