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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp

Issue 2237573003: Disable flaky LayoutTableCellDeathTest and LayoutTableRowDeathTest. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: LayoutTableRowDeathTest. Created 4 years, 4 months 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 | third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp b/third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp
index 5183d90ba09489cc37807d2460783ed586b4fb02..12c5cb14750fe82c1e4f3ee900ccee0a7fd22c61 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp
@@ -47,14 +47,15 @@ protected:
LayoutTableCell* m_cell;
};
-TEST_F(LayoutTableCellDeathTest, CanSetColumn)
+// TODO(esprehn): Disabled all of these tests because they're flaky: crbug.com/630625
+TEST_F(LayoutTableCellDeathTest, DISABLED_CanSetColumn)
{
static const unsigned columnIndex = 10;
m_cell->setAbsoluteColumnIndex(columnIndex);
EXPECT_EQ(columnIndex, m_cell->absoluteColumnIndex());
}
-TEST_F(LayoutTableCellDeathTest, CanSetColumnToMaxColumnIndex)
+TEST_F(LayoutTableCellDeathTest, DISABLED_CanSetColumnToMaxColumnIndex)
{
m_cell->setAbsoluteColumnIndex(maxColumnIndex);
EXPECT_EQ(maxColumnIndex, m_cell->absoluteColumnIndex());
@@ -64,12 +65,12 @@ TEST_F(LayoutTableCellDeathTest, CanSetColumnToMaxColumnIndex)
// See: https://bugs.webkit.org/show_bug.cgi?id=74089
#if !OS(ANDROID)
-TEST_F(LayoutTableCellDeathTest, CrashIfColumnOverflowOnSetting)
+TEST_F(LayoutTableCellDeathTest, DISABLED_CrashIfColumnOverflowOnSetting)
{
ASSERT_DEATH(m_cell->setAbsoluteColumnIndex(maxColumnIndex + 1), "");
}
-TEST_F(LayoutTableCellDeathTest, CrashIfSettingUnsetColumnIndex)
+TEST_F(LayoutTableCellDeathTest, DISABLED_CrashIfSettingUnsetColumnIndex)
{
ASSERT_DEATH(m_cell->setAbsoluteColumnIndex(unsetColumnIndex), "");
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698