Commit e495c5d2 authored by thestig@chromium.org's avatar thestig@chromium.org

Disable ExtensionServiceTest.BlacklistedExtensionWillNotInstall and...

Disable ExtensionServiceTest.BlacklistedExtensionWillNotInstall and WillNotLoadBlacklistedExtensionsFromDirectory. They are crashing.

BUG=315396
NOTRY=true

Review URL: https://codereview.chromium.org/61463002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@233290 0039d316-1c4b-4281-b951-d872f2087c98
parent cd41a750
......@@ -3389,7 +3389,9 @@ TEST_F(ExtensionServiceTest, SetUnsetBlacklistInPrefs) {
#if defined(ENABLE_BLACKLIST_TESTS)
// Tests trying to install a blacklisted extension.
TEST_F(ExtensionServiceTest, BlacklistedExtensionWillNotInstall) {
// Disabled due to http://crbug.com/315396
TEST_F(ExtensionServiceTest,
DISABLED_BlacklistedExtensionWillNotInstall) {
scoped_refptr<FakeSafeBrowsingDatabaseManager> blacklist_db(
new FakeSafeBrowsingDatabaseManager(true));
Blacklist::ScopedDatabaseManagerForTest scoped_blacklist_db(blacklist_db);
......@@ -3444,7 +3446,9 @@ TEST_F(ExtensionServiceTest, UnloadBlacklistedExtensionPolicy) {
#if defined(ENABLE_BLACKLIST_TESTS)
// Tests that a blacklisted extension is eventually unloaded on startup, if it
// wasn't already.
TEST_F(ExtensionServiceTest, WillNotLoadBlacklistedExtensionsFromDirectory) {
// Disabled due to http://crbug.com/315396
TEST_F(ExtensionServiceTest,
DISABLED_WillNotLoadBlacklistedExtensionsFromDirectory) {
scoped_refptr<FakeSafeBrowsingDatabaseManager> blacklist_db(
new FakeSafeBrowsingDatabaseManager(true));
Blacklist::ScopedDatabaseManagerForTest scoped_blacklist_db(blacklist_db);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment