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

Unified Diff: third_party/WebKit/Source/core/layout/LayoutTableRowTest.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 | « third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp
diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp
index e71f61863464d3af47f55ba60ba142d9f9227ece..31c2a852e99c6a6b8939187d7727c45e670f277c 100644
--- a/third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp
+++ b/third_party/WebKit/Source/core/layout/LayoutTableRowTest.cpp
@@ -47,14 +47,15 @@ protected:
LayoutTableRow* m_row;
};
-TEST_F(LayoutTableRowDeathTest, CanSetRow)
+// TODO(esprehn): Disabled all of these tests because they're flaky: crbug.com/630625
+TEST_F(LayoutTableRowDeathTest, DISABLED_CanSetRow)
{
static const unsigned rowIndex = 10;
m_row->setRowIndex(rowIndex);
EXPECT_EQ(rowIndex, m_row->rowIndex());
}
-TEST_F(LayoutTableRowDeathTest, CanSetRowToMaxRowIndex)
+TEST_F(LayoutTableRowDeathTest, DISABLED_CanSetRowToMaxRowIndex)
{
m_row->setRowIndex(maxRowIndex);
EXPECT_EQ(maxRowIndex, m_row->rowIndex());
@@ -64,12 +65,12 @@ TEST_F(LayoutTableRowDeathTest, CanSetRowToMaxRowIndex)
// See: https://bugs.webkit.org/show_bug.cgi?id=74089
#if !OS(ANDROID)
-TEST_F(LayoutTableRowDeathTest, CrashIfRowOverflowOnSetting)
+TEST_F(LayoutTableRowDeathTest, DISABLED_CrashIfRowOverflowOnSetting)
{
ASSERT_DEATH(m_row->setRowIndex(maxRowIndex + 1), "");
}
-TEST_F(LayoutTableRowDeathTest, CrashIfSettingUnsetRowIndex)
+TEST_F(LayoutTableRowDeathTest, DISABLED_CrashIfSettingUnsetRowIndex)
{
ASSERT_DEATH(m_row->setRowIndex(unsetRowIndex), "");
}
« no previous file with comments | « third_party/WebKit/Source/core/layout/LayoutTableCellTest.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698