Bug 1208200 - Increase the content response timeout to 1 minute because B2G emulator is slow. r=botond

--HG--
extra : commitid : 1ptGPRkoKXI
This commit is contained in:
Kartikaya Gupta 2015-10-05 16:18:24 -04:00
Родитель b41507aa42
Коммит 213fa3c4ec
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -259,12 +259,13 @@ user_pref("identity.fxaccounts.remote.signin.uri", "https://%(server)s/fxa-signi
user_pref("identity.fxaccounts.settings.uri", "https://%(server)s/fxa-settings");
user_pref('identity.fxaccounts.remote.webchannel.uri', 'https://%(server)s/');
// Increase the APZ content response timeout in tests to 15 seconds.
// Increase the APZ content response timeout in tests to 1 minute.
// This is to accommodate the fact that test environments tends to be slower
// than production environments (with the b2g emulator being the slowest of them
// all), resulting in the production timeout value sometimes being exceeded
// and causing false-positive test failures. See bug 1176798, bug 1177018.
user_pref("apz.content_response_timeout", 15000);
// and causing false-positive test failures. See bug 1176798, bug 1177018,
// bug 1210465.
user_pref("apz.content_response_timeout", 60000);
// Make sure SSL Error reports don't hit the network
user_pref("security.ssl.errorReporting.url", "https://example.com/browser/browser/base/content/test/general/pinning_reports.sjs?succeed");