Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(134)

Unified Diff: views/controls/tabbed_pane/tabbed_pane_unittest.cc

Issue 8560003: AddRemove is failing the same way as TabbedPaneTest.SizeAndLayout on win7. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: views/controls/tabbed_pane/tabbed_pane_unittest.cc
===================================================================
--- views/controls/tabbed_pane/tabbed_pane_unittest.cc (revision 109835)
+++ views/controls/tabbed_pane/tabbed_pane_unittest.cc (working copy)
@@ -67,10 +67,12 @@
};
#if defined(OS_WIN)
-// This test is failing and crashes on Win7. See http://crbug.com/104067
+// These test are failing and crash on Win7. See http://crbug.com/104067
#define MAYBE_SizeAndLayout DISABLED_SizeAndLayout
+#define MAYBE_AddRemove DISBLED_AddRemove
nsylvain 2011/11/13 19:30:12 DISBLED->DISABLED. already fixed.
#else
#define MAYBE_SizeAndLayout SizeAndLayout
+#define MAYBE_AddRemove AddRemove
#endif
// Tests that TabbedPane::GetPreferredSize() and TabbedPane::Layout().
@@ -100,7 +102,7 @@
EXPECT_EQ(bounds, child2->bounds());
}
-TEST_F(TabbedPaneTest, AddRemove) {
+TEST_F(TabbedPaneTest, MAYBE_AddRemove) {
View* tab0 = new View;
tabbed_pane_->AddTab(ASCIIToUTF16("tab0"), tab0);
EXPECT_EQ(tab0, tabbed_pane_->GetSelectedTab());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698