Mark flaky tests as flaky:

BookmarkHTMLWriterTest.Test (suspected resource flakiness)
LoginPromptTest.TestTwoAuths

TEST=none
BUG=17592, 25794

Review URL: http://codereview.chromium.org/332024

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30087 0039d316-1c4b-4281-b951-d872f2087c98
parent d72a5a16
......@@ -98,7 +98,8 @@ class BookmarkHTMLWriterTest : public testing::Test {
// Tests bookmark_html_writer by populating a BookmarkModel, writing it out by
// way of bookmark_html_writer, then using the importer to read it back in.
TEST_F(BookmarkHTMLWriterTest, Test) {
// Flaky, http://crbug.com/17592.
TEST_F(BookmarkHTMLWriterTest, FLAKY_Test) {
// Populate the BookmarkModel. This creates the following bookmark structure:
// Bookmarks bar
// F1
......
......@@ -106,7 +106,8 @@ TEST_F(LoginPromptTest, TestDigestAuth) {
}
// Test that logging in on 2 tabs at once works.
TEST_F(LoginPromptTest, TestTwoAuths) {
// Flaky, http://crbug.com/25794.
TEST_F(LoginPromptTest, FLAKY_TestTwoAuths) {
scoped_refptr<HTTPTestServer> server =
HTTPTestServer::CreateServer(kDocRoot, NULL);
ASSERT_TRUE(NULL != server.get());
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment