Commit 80ab663f authored by xhwang@chromium.org's avatar xhwang@chromium.org

Disable UnlimitedStorageForLocalButNotSync test on Windows.

TBR=scottmg@chromium.org
BUG=227296

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

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@192685 0039d316-1c4b-4281-b951-d872f2087c98
parent c041fc27
......@@ -260,8 +260,17 @@ static void UnlimitedLocalStorageTestCallback(ValueStore* local_storage) {
ValueStore::DEFAULTS, "WontError", *megabyte)->HasError());
}
#if defined(OS_WIN)
// See: http://crbug.com/227296
#define MAYBE_UnlimitedStorageForLocalButNotSync \
DISABLED_UnlimitedStorageForLocalButNotSync
#else
#define MAYBE_UnlimitedStorageForLocalButNotSync \
UnlimitedStorageForLocalButNotSync
#endif
TEST_F(ExtensionSettingsFrontendTest,
UnlimitedStorageForLocalButNotSync) {
MAYBE_UnlimitedStorageForLocalButNotSync) {
const std::string id = "ext";
std::set<std::string> permissions;
permissions.insert("unlimitedStorage");
......
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