Skip to content

Commit

Permalink
Mark CMAF_HEVC_AAC tests in dash html5 test suite as unstable (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
pawel-bartkowiak-epam authored Jan 17, 2023
1 parent 4e8b4c4 commit 41c68cb
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions src/suites.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,23 +117,31 @@ window.testSuiteVersions[testVersion]["config"]["defaultTestSuite"] = "codec-sup
// in 'skipTests' specify test name as key and reason as value, e.g.: "DASH_FMP4_MP3 Seek": "ONEM-12345"
let skipTests = {};
StreamSets.DASH.html5 = StreamSets.DASH.Common.filter((stream) => {
return stream != MS.DASH.WEBM_VP9_OPUS && stream != MS.DASH.DYNAMIC && stream != MS.DASH.FMP4_HEVC_EAC3 // ONEM-27782
})
return (
stream != MS.DASH.WEBM_VP9_OPUS &&
stream != MS.DASH.DYNAMIC &&
stream != MS.DASH.FMP4_HEVC_EAC3 &&
stream != MS.DASH.CMAF_HEVC_AAC
); // ONEM-27782
});

let tests = makeMvtMediaTests(testPlayback, engine, StreamSets.DASH.html5);
tests.push(new MvtMediaTest(testPlayback, MS.DASH.WEBM_VP9_OPUS, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testPlayback, MS.DASH.DYNAMIC, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testPlayback, MS.DASH.FMP4_HEVC_EAC3, engine));
tests.push(new MvtMediaTest(testPlayback, MS.DASH.CMAF_HEVC_AAC, engine, new Unstable("ONEM-29170")));

tests = tests.concat(makeMvtMediaTests(testPause, engine, StreamSets.DASH.html5));
tests.push(new MvtMediaTest(testPause, MS.DASH.WEBM_VP9_OPUS, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testPause, MS.DASH.DYNAMIC, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testPause, MS.DASH.FMP4_HEVC_EAC3, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testPause, MS.DASH.CMAF_HEVC_AAC, engine, new Unstable("ONEM-29170")));

tests = tests.concat(makeMvtMediaTests(testSetPosition, engine, StreamSets.DASH.html5));
tests.push(new MvtMediaTest(testSetPosition, MS.DASH.WEBM_VP9_OPUS, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testSetPosition, MS.DASH.DYNAMIC, engine, new Unstable("ONEM-27782")));
tests.push(new MvtMediaTest(testSetPosition, MS.DASH.FMP4_HEVC_EAC3, engine));
tests.push(new MvtMediaTest(testSetPosition, MS.DASH.CMAF_HEVC_AAC, engine, new Unstable("ONEM-29170")));

// tests = tests.concat(makeMvtMediaTests(testPlayRate, engine, StreamSets.DASH.html5, new Unstable("ONEM-26268")));
tests = tests.concat(makeMvtMediaTests(testSubtitles, engine, StreamSets.DASH.Subtitles, new Unstable("ONEM-27782")));
Expand Down

0 comments on commit 41c68cb

Please sign in to comment.