Commit 57c787b8 authored by thestig@chromium.org's avatar thestig@chromium.org

Disable crashing ExtensionApiTest.Storage and ExtensionApiTest.IncognitoPopup tests.

BUG=104419,104438
TEST=tree gets greener.
TBR=aleksey,kmadhusu
Review URL: http://codereview.chromium.org/8572050

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110271 0039d316-1c4b-4281-b951-d872f2087c98
parent f04680cd
...@@ -169,8 +169,14 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, IncognitoDisabled) { ...@@ -169,8 +169,14 @@ IN_PROC_BROWSER_TEST_F(ExtensionApiTest, IncognitoDisabled) {
EXPECT_TRUE(catcher.GetNextResult()) << catcher.message(); EXPECT_TRUE(catcher.GetNextResult()) << catcher.message();
} }
#if defined(OS_WIN)
// http://crbug.com/104438.
#define MAYBE_IncognitoPopup DISABLED_IncognitoPopup
#else
#define MAYBE_IncognitoPopup IncognitoPopup
#endif
// Test that opening a popup from an incognito browser window works properly. // Test that opening a popup from an incognito browser window works properly.
IN_PROC_BROWSER_TEST_F(ExtensionApiTest, IncognitoPopup) { IN_PROC_BROWSER_TEST_F(ExtensionApiTest, MAYBE_IncognitoPopup) {
host_resolver()->AddRule("*", "127.0.0.1"); host_resolver()->AddRule("*", "127.0.0.1");
ASSERT_TRUE(StartTestServer()); ASSERT_TRUE(StartTestServer());
......
// Copyright (c) 2009 The Chromium Authors. All rights reserved. // Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be // Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. // found in the LICENSE file.
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
#if defined(OS_WIN) #if defined(OS_WIN)
// Always fails on Windows after r110181: http://crbug.com/104419. // Always fails on Windows after r110181: http://crbug.com/104419.
#define MAYBE_Storage FAILS_Storage #define MAYBE_Storage DISABLED_Storage
#else #else
#define MAYBE_Storage Storage #define MAYBE_Storage Storage
#endif #endif
......
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