Bug 1546655 - Skip ambisonics.mp4 in test_streams_element_capture.html. r=padenot

Differential Revision: https://phabricator.services.mozilla.com/D28651

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Andreas Pehrson 2019-04-24 14:00:53 +00:00
Родитель 8a23f4f295
Коммит b3f586c723
1 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -110,8 +110,12 @@ function startTest(test, token) {
// This test exhibits bug 1543980 with RDD enabled.
["media.rdd-process.enabled", false],
]});
let tests = gPlayTests;
// Filter out bug1377278.webm due to bug 1541401.
manager.runTests(gPlayTests.filter(t => !t.name.includes("1377278")), startTest);
tests = gPlayTests.filter(t => !t.name.includes("1377278"));
// Filter out ambisonics.mp4 due to bug 1546655.
tests = gPlayTests.filter(t => !t.name.includes("ambisonics"));
manager.runTests(tests, startTest);
})();
</script>
</pre>