diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /ipc/glue/test/browser/browser.toml | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ipc/glue/test/browser/browser.toml')
-rw-r--r-- | ipc/glue/test/browser/browser.toml | 94 |
1 files changed, 94 insertions, 0 deletions
diff --git a/ipc/glue/test/browser/browser.toml b/ipc/glue/test/browser/browser.toml new file mode 100644 index 0000000000..8f94bc130d --- /dev/null +++ b/ipc/glue/test/browser/browser.toml @@ -0,0 +1,94 @@ +[DEFAULT] +support-files = ["head.js"] +# Set this since we want to continue monitoring the disabling of pref since we +# still allow it a little bit. +environment = "MOZ_DONT_LOCK_UTILITY_PLZ_FILE_A_BUG=1" + +["browser_audio_telemetry_content.js"] +skip-if = ["os == 'win'"] # gfx blocks us because media.rdd-process.enabled=false disables PDMFactory::AllDecodersAreRemote() +support-files = [ + "head-telemetry.js", + "../../../../dom/media/test/small-shot.ogg", + "../../../../dom/media/test/small-shot.mp3", + "../../../../dom/media/test/small-shot.m4a", + "../../../../dom/media/test/small-shot.flac" +] + +["browser_audio_telemetry_rdd.js"] +support-files = [ + "head-telemetry.js", + "../../../../dom/media/test/small-shot.ogg", + "../../../../dom/media/test/small-shot.mp3", + "../../../../dom/media/test/small-shot.m4a", + "../../../../dom/media/test/small-shot.flac" +] + +["browser_audio_telemetry_utility.js"] +support-files = [ + "head-telemetry.js", + "../../../../dom/media/test/small-shot.ogg", + "../../../../dom/media/test/small-shot.mp3", + "../../../../dom/media/test/small-shot.m4a", + "../../../../dom/media/test/small-shot.flac" +] + +["browser_audio_telemetry_utility_EME.js"] +support-files = [ + "head-telemetry.js", + "../../../../dom/media/test/eme_standalone.js", + "../../../../dom/media/test/short-aac-encrypted-audio.mp4" +] + +["browser_utility_audioDecodeCrash.js"] +support-files = [ + "../../../../dom/media/test/small-shot.ogg", + "../../../../dom/media/test/small-shot.mp3", + "../../../../dom/media/test/small-shot.m4a", + "../../../../dom/media/test/small-shot.flac" +] +skip-if = [ + "!crashreporter", + "ccov", +] + +["browser_utility_crashReporter.js"] +skip-if = [ + "!crashreporter", + "ccov", +] + +["browser_utility_filepicker_crashed.js"] +run-if = ["os == 'win'"] +skip-if = [ + "!crashreporter", + "ccov", +] + +["browser_utility_geolocation_crashed.js"] +run-if = ["os == 'win'"] +skip-if = [ + "!crashreporter", + "ccov", +] + +["browser_utility_hard_kill.js"] + +["browser_utility_hard_kill_delayed.js"] # bug 1754572: we really want hard_kill to be rust before hard_kill_delayed + +["browser_utility_memoryReport.js"] +skip-if = ["tsan"] # bug 1754554 + +["browser_utility_multipleAudio.js"] +support-files = [ + "../../../../dom/media/test/small-shot.ogg", + "../../../../dom/media/test/small-shot.mp3", + "../../../../dom/media/test/small-shot.m4a", + "../../../../dom/media/test/small-shot.flac", + "head-multiple.js" +] + +["browser_utility_profiler.js"] +support-files = ["../../../../tools/profiler/tests/shared-head.js"] +skip-if = ["tsan"] # from tools/profiler/tests/browser/browser.ini, timing out on profiler tests? + +["browser_utility_start_clean_shutdown.js"] |