Bug 1404253 - Disable places' bookmarks backups in mochitests to avoid intermittent failures. r?mak draft
authorMark Banner <standard8@mozilla.com>
Mon, 29 Jan 2018 15:50:44 +0000
changeset 749539 0fb1f947f705e91d08b545a244f5fe85735f107e
parent 749226 c1154ebbe3fa43176dffcb0782809c648a027bcd
push id97418
push userbmo:standard8@mozilla.com
push dateWed, 31 Jan 2018 16:59:41 +0000
reviewersmak
bugs1404253
milestone60.0a1
Bug 1404253 - Disable places' bookmarks backups in mochitests to avoid intermittent failures. r?mak MozReview-Commit-ID: 53TipklHXxX
testing/profiles/prefs_general.js
--- a/testing/profiles/prefs_general.js
+++ b/testing/profiles/prefs_general.js
@@ -389,8 +389,11 @@ user_pref("marionette.prefs.recommended"
 // Disable Screenshots by default for now
 user_pref("extensions.screenshots.disabled", true);
 
 // Set places maintenance far in the future (the maximum time possible in an
 // int32_t) to avoid it kicking in during tests. The maintenance can take a
 // relatively long time which may cause unnecessary intermittents and slow down
 // tests. This, like many things, will stop working correctly in 2038.
 user_pref("places.database.lastMaintenance", 2147483647);
+
+// Disable Bookmark backups by default.
+user_pref("browser.bookmarks.max_backups", 0);