diff options
author | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-23 18:50:19 +0000 |
---|---|---|
committer | jcampan@chromium.org <jcampan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-23 18:50:19 +0000 |
commit | a72c19561ed06fff1e4b87c8e1fc64d1ed9b6013 (patch) | |
tree | 05d66fb2247b7bb0d6e6c16c5c7b56e6361e66fc | |
parent | 552b9e2c78e7a10b692e7c18cef80935cf7214fe (diff) | |
download | chromium_src-a72c19561ed06fff1e4b87c8e1fc64d1ed9b6013.zip chromium_src-a72c19561ed06fff1e4b87c8e1fc64d1ed9b6013.tar.gz chromium_src-a72c19561ed06fff1e4b87c8e1fc64d1ed9b6013.tar.bz2 |
Disabling some browser tests that fail, as part of deploying the browser tests to the build bot.
BUG=None
TEST=Run the browser tests.
Review URL: http://codereview.chromium.org/146042
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19039 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/browser/extensions/extension_browsertest.cc | 6 | ||||
-rw-r--r-- | chrome/browser/extensions/extension_shelf_model_unittest.cc | 3 |
2 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/extensions/extension_browsertest.cc b/chrome/browser/extensions/extension_browsertest.cc index c64275047..e8a93ec 100644 --- a/chrome/browser/extensions/extension_browsertest.cc +++ b/chrome/browser/extensions/extension_browsertest.cc @@ -92,7 +92,8 @@ class ExtensionViewTest : public InProcessBrowserTest { // Tests that ExtensionView starts an extension process and runs the script // contained in the extension's toolstrip. -IN_PROC_BROWSER_TEST_F(ExtensionViewTest, Toolstrip) { +// TODO(mpcomplete): http://crbug.com/15081 Disabled because it fails. +IN_PROC_BROWSER_TEST_F(ExtensionViewTest, DISABLED_Toolstrip) { // Get the path to our extension. FilePath path; ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &path)); @@ -116,7 +117,8 @@ IN_PROC_BROWSER_TEST_F(ExtensionViewTest, Toolstrip) { // Tests that the ExtensionShelf initializes properly, notices that // an extension loaded and has a view available, and then sets that up // properly. -IN_PROC_BROWSER_TEST_F(ExtensionViewTest, Shelf) { +// TODO(mpcomplete): http://crbug.com/15081 Disabled because it fails. +IN_PROC_BROWSER_TEST_F(ExtensionViewTest, DISABLED_Shelf) { // When initialized, there are no extension views and the preferred height // should be zero. scoped_ptr<ExtensionShelf> shelf(new ExtensionShelf(browser())); diff --git a/chrome/browser/extensions/extension_shelf_model_unittest.cc b/chrome/browser/extensions/extension_shelf_model_unittest.cc index 513f281..80da55d 100644 --- a/chrome/browser/extensions/extension_shelf_model_unittest.cc +++ b/chrome/browser/extensions/extension_shelf_model_unittest.cc @@ -83,7 +83,8 @@ class ExtensionShelfModelTest : public InProcessBrowserTest, int moved_count_; }; -IN_PROC_BROWSER_TEST_F(ExtensionShelfModelTest, Basic) { +// TODO(erikkay): http://crbug.com/15080 Disabled because it fails. +IN_PROC_BROWSER_TEST_F(ExtensionShelfModelTest, DISABLED_Basic) { // Get the path to our extension. FilePath path; ASSERT_TRUE(PathService::Get(chrome::DIR_TEST_DATA, &path)); |