Bug 1823953 - Adjust utility process tests: the expected decoders are now ffmpeg. r=gerard-majax

Differential Revision: https://phabricator.services.mozilla.com/D182369
This commit is contained in:
Paul Adenot 2023-08-08 12:12:54 +00:00
Родитель bb102802b7
Коммит 5cc7f12b8c
2 изменённых файлов: 6 добавлений и 6 удалений

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

@ -42,7 +42,7 @@ add_setup(async function setup() {
});
add_task(async function testKill() {
await runTest("small-shot.ogg", "Utility Generic", "vorbis audio decoder");
await runTest("small-shot.ogg", "Utility Generic", "ffvpx audio decoder");
await cleanUtilityProcessShutdown(
"audioDecoder_Generic",
@ -59,7 +59,7 @@ add_task(async function testKill() {
});
add_task(async function testShutdown() {
await runTest("small-shot.ogg", "Utility Generic", "vorbis audio decoder");
await runTest("small-shot.ogg", "Utility Generic", "ffvpx audio decoder");
const audioDecoderPid = await findGenericAudioDecoder();
ok(audioDecoderPid > 0, `Valid PID found: ${audioDecoderPid}`);

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

@ -110,19 +110,19 @@ function audioTestData() {
expectations: {
Android: {
process: "Utility Generic",
decoder: "vorbis audio decoder",
decoder: "ffvpx audio decoder",
},
Linux: {
process: "Utility Generic",
decoder: "vorbis audio decoder",
decoder: "ffvpx audio decoder",
},
WINNT: {
process: "Utility Generic",
decoder: "vorbis audio decoder",
decoder: "ffvpx audio decoder",
},
Darwin: {
process: "Utility Generic",
decoder: "vorbis audio decoder",
decoder: "ffvpx audio decoder",
},
},
},