mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
83f352562c
The KillHard timeout seems to be getting triggered on some of our mochitest machines, which is causing us to leave minidumps behind - so we disable the timeout for mochitests. We also disable KillHard paired minidumps for B2G, because we were getting minidumps for some B2G Desktop tests there for what are likely some intentional KillHard's, and at this point, we don't think it's worth collecting for B2G. --HG-- extra : rebase_source : adcad58bc3b893e30e71992514b8a966257f8bc0 extra : amend_source : 11fd95ac3e3a5ed1dbb55d450f480b9092d31528
13 lines
678 B
JavaScript
13 lines
678 B
JavaScript
// Prefs specific to b2g mochitests
|
|
|
|
user_pref("b2g.system_manifest_url","app://test-container.gaiamobile.org/manifest.webapp");
|
|
user_pref("b2g.system_startup_url","app://test-container.gaiamobile.org/index.html");
|
|
user_pref("dom.ipc.browser_frames.oop_by_default", false);
|
|
user_pref("dom.ipc.tabs.disabled", false);
|
|
user_pref("dom.ipc.tabs.shutdownTimeoutSecs", 0);
|
|
user_pref("dom.mozBrowserFramesEnabled", "%(OOP)s");
|
|
user_pref("dom.mozBrowserFramesWhitelist","app://test-container.gaiamobile.org,http://mochi.test:8888");
|
|
user_pref("dom.testing.datastore_enabled_for_hosted_apps", true);
|
|
user_pref("marionette.force-local", true);
|
|
user_pref("touchcaret.expiration.time", 0);
|