diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-06 00:23:23 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-06 00:23:23 +0000 |
commit | a14e56a9987689db99734d808768ed3be6a182da (patch) | |
tree | 1eeb4f31332c168f6541728e1b856ffe5830b16d | |
parent | 17704057ec3d9a444c62d28b50519b253437bb0f (diff) | |
download | chromium_src-a14e56a9987689db99734d808768ed3be6a182da.zip chromium_src-a14e56a9987689db99734d808768ed3be6a182da.tar.gz chromium_src-a14e56a9987689db99734d808768ed3be6a182da.tar.bz2 |
Mark some flaky and failing tests as such.
TEST=none
BUG=none
Review URL: http://codereview.chromium.org/3027045
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55160 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/test/ui/ppapi_uitest.cc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/chrome/test/ui/ppapi_uitest.cc b/chrome/test/ui/ppapi_uitest.cc index 61d56ef..2a7bb61 100644 --- a/chrome/test/ui/ppapi_uitest.cc +++ b/chrome/test/ui/ppapi_uitest.cc @@ -91,7 +91,9 @@ TEST_F(PPAPITest, DeviceContext2D) { RunTest("DeviceContext2D"); } -TEST_F(PPAPITest, ImageData) { +// TODO(brettw) bug 51344: this is flaky on bots. Seems to timeout navigating. +// Possibly all the image allocations slow things down on a loaded bot too much. +TEST_F(PPAPITest, FLAKY_ImageData) { RunTest("ImageData"); } @@ -99,7 +101,8 @@ TEST_F(PPAPITest, Buffer) { RunTest("Buffer"); } -TEST_F(PPAPITest, URLLoader) { +// TODO(brettw) bug 51345: this failed consistently on one of the bots. +TEST_F(PPAPITest, FAILS_URLLoader) { RunTestViaHTTP("URLLoader"); } |