diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-05 17:22:40 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-05-05 17:22:40 +0000 |
commit | 4bef1e0e520daf9d70f5cefa8d5c9c0679308498 (patch) | |
tree | 48553e64abe22371af342d3a68a1904aa7da6f0c | |
parent | b9770abcc92721506be8ad22c288fc3d4af092db (diff) | |
download | chromium_src-4bef1e0e520daf9d70f5cefa8d5c9c0679308498.zip chromium_src-4bef1e0e520daf9d70f5cefa8d5c9c0679308498.tar.gz chromium_src-4bef1e0e520daf9d70f5cefa8d5c9c0679308498.tar.bz2 |
Re-enable some PPAPI tests. These have not failed lately, probably as a result
of some timing changes we made (to give the tests more time to run).
BUG=48544,51012
Review URL: http://codereview.chromium.org/6927030
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@84262 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/test/ui/ppapi_uitest.cc | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/chrome/test/ui/ppapi_uitest.cc b/chrome/test/ui/ppapi_uitest.cc index 489eeaf..e9b9a70 100644 --- a/chrome/test/ui/ppapi_uitest.cc +++ b/chrome/test/ui/ppapi_uitest.cc @@ -117,9 +117,7 @@ TEST_F(PPAPITest, Graphics2D) { RunTest("Graphics2D"); } -// 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) { +TEST_F(PPAPITest, ImageData) { RunTest("ImageData"); } @@ -132,13 +130,11 @@ TEST_F(PPAPITest, FLAKY_URLLoader) { RunTestViaHTTP("URLLoader"); } -// Flaky, http://crbug.com/51012 -TEST_F(PPAPITest, FLAKY_PaintAggregator) { +TEST_F(PPAPITest,PaintAggregator) { RunTestViaHTTP("PaintAggregator"); } -// Flaky, http://crbug.com/48544. -TEST_F(PPAPITest, FLAKY_Scrollbar) { +TEST_F(PPAPITest, Scrollbar) { RunTest("Scrollbar"); } |