commit 29e960ecb4220ce0b456a3ea3c08e1d828850e4a
parent 9b843587aa4623afff088bd86c5eddc7b8c5b728
Author: Luca Greco <lgreco@mozilla.com>
Date: Thu, 23 Oct 2025 18:42:54 +0000
Bug 1996059 - Fix browser_doorhanger_installs.js permafailure due to blocklist false positive hit by recommended.xpi test add-on. r=diannaS
Differential Revision: https://phabricator.services.mozilla.com/D269851
Diffstat:
1 file changed, 6 insertions(+), 0 deletions(-)
diff --git a/toolkit/mozapps/extensions/test/xpinstall/browser_doorhanger_installs.js b/toolkit/mozapps/extensions/test/xpinstall/browser_doorhanger_installs.js
@@ -655,6 +655,12 @@ describe("Add-on installation doorhangers", function () {
["extensions.postDownloadThirdPartyPrompt", true],
// recommended.xpi is signed with AMO staging signature.
["xpinstall.signatures.dev-root", true],
+ // Disable the blocklist because recommended.xpi is signed
+ // only with the staging signature and it may end up hitting
+ // a false positive on the Blocklist bloomfilter computed
+ // from all add-ons known by AMO as signed with the
+ // production key (e.g. see Bug 1996059).
+ ["extensions.blocklist.enabled", false],
],
});