зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1018400 - disable safebrowsing during reftests; r=ted
This commit is contained in:
Родитель
92c9e7b15c
Коммит
009a5a030e
|
@ -23,3 +23,5 @@ user_pref("javascript.options.werror", false);
|
|||
user_pref("toolkit.startup.max_resumed_crashes", -1);
|
||||
user_pref("security.turn_off_all_security_so_that_viruses_can_take_over_this_computer", true);
|
||||
user_pref("toolkit.telemetry.enabled", false);
|
||||
user_pref("browser.safebrowsing.enabled", false);
|
||||
user_pref("browser.safebrowsing.malware.enabled", false);
|
||||
|
|
|
@ -168,6 +168,9 @@ class RefTest(object):
|
|||
# Ensure that telemetry is disabled, so we don't connect to the telemetry
|
||||
# server in the middle of the tests.
|
||||
prefs['toolkit.telemetry.enabled'] = False
|
||||
# Likewise for safebrowsing.
|
||||
prefs['browser.safebrowsing.enabled'] = False
|
||||
prefs['browser.safebrowsing.malware.enabled'] = False
|
||||
|
||||
if options.e10s:
|
||||
prefs['browser.tabs.remote.autostart'] = True
|
||||
|
|
Загрузка…
Ссылка в новой задаче