diff options
author | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 20:27:17 +0000 |
---|---|---|
committer | hclam@chromium.org <hclam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-02-17 20:27:17 +0000 |
commit | 22242a629c41c4ad62b57c43c1b33ffc88a21389 (patch) | |
tree | cefa39f9079e969d51918218e3929fa65daf4476 /media | |
parent | 5252798be9972b728270ee553242521fd59079a2 (diff) | |
download | chromium_src-22242a629c41c4ad62b57c43c1b33ffc88a21389.zip chromium_src-22242a629c41c4ad62b57c43c1b33ffc88a21389.tar.gz chromium_src-22242a629c41c4ad62b57c43c1b33ffc88a21389.tar.bz2 |
Add comment to unit tests previously disabled
FFmpegGlueTest and friends are crashing on the build bots. Some
of them are disabled and need comment in the code to indicate
the bug number.
BUG=36037
TBR=scherkus, finnur
Review URL: http://codereview.chromium.org/619012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@39253 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'media')
-rw-r--r-- | media/filters/ffmpeg_glue_unittest.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/media/filters/ffmpeg_glue_unittest.cc b/media/filters/ffmpeg_glue_unittest.cc index a93ebd8..65e4878 100644 --- a/media/filters/ffmpeg_glue_unittest.cc +++ b/media/filters/ffmpeg_glue_unittest.cc @@ -182,6 +182,8 @@ TEST_F(FFmpegGlueTest, OpenClose) { mock_ffmpeg_.CheckPoint(2); } +// This test is crashing on build bot. See bug: +// http://code.google.com/p/chromium/issues/detail?id=36037. TEST_F(FFmpegGlueTest, DISABLED_Write) { scoped_ptr<StrictMock<MockProtocol> > protocol( new StrictMock<MockProtocol>()); @@ -200,6 +202,8 @@ TEST_F(FFmpegGlueTest, DISABLED_Write) { protocol_->url_close(&context); } +// This test is crashing on build bot. See bug: +// http://code.google.com/p/chromium/issues/detail?id=36037. TEST_F(FFmpegGlueTest, DISABLED_Read) { scoped_ptr<StrictMock<MockProtocol> > protocol( new StrictMock<MockProtocol>()); @@ -226,6 +230,8 @@ TEST_F(FFmpegGlueTest, DISABLED_Read) { protocol_->url_close(&context); } +// This test is crashing on build bot. See bug: +// http://code.google.com/p/chromium/issues/detail?id=36037. TEST_F(FFmpegGlueTest, DISABLED_Seek) { scoped_ptr<StrictMock<MockProtocol> > protocol( new StrictMock<MockProtocol>()); @@ -302,6 +308,8 @@ TEST_F(FFmpegGlueTest, DISABLED_Seek) { protocol_->url_close(&context); } +// This test is crashing on build bot. See bug: +// http://code.google.com/p/chromium/issues/detail?id=36037. TEST_F(FFmpegGlueTest, DISABLED_Destroy) { // Create our protocol and add them to the glue layer. scoped_ptr<StrictMock<Destroyable<MockProtocol> > > protocol( |