Skip to content

Commit

Permalink
Disable failed test AppBackgroundPageApiTest.Basic on Mac.
Browse files Browse the repository at this point in the history
BUG=95139
TEST=none
Review URL: http://codereview.chromium.org/7792086

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@99268 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
dyu@chromium.org committed Sep 2, 2011
1 parent b70886b commit 5d5c1ed
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion chrome/browser/extensions/app_background_page_apitest.cc
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,14 @@ class AppBackgroundPageApiTest : public ExtensionApiTest {
ScopedTempDir app_dir_;
};

IN_PROC_BROWSER_TEST_F(AppBackgroundPageApiTest, Basic) {
// Disable on Mac only. http://crbug.com/95139
#if defined(OS_MACOSX)
#define MAYBE_Basic DISABLED_Basic
#else
#define MAYBE_Basic Basic
#endif

IN_PROC_BROWSER_TEST_F(AppBackgroundPageApiTest, MAYBE_Basic) {
host_resolver()->AddRule("a.com", "127.0.0.1");
ASSERT_TRUE(StartTestServer());

Expand Down

0 comments on commit 5d5c1ed

Please sign in to comment.