summaryrefslogtreecommitdiffstats
path: root/cc/resources
diff options
context:
space:
mode:
authordanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-16 23:06:41 +0000
committerdanakj@chromium.org <danakj@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-07-16 23:06:41 +0000
commita7d3655da073b197c313907e10b8c6054a097828 (patch)
tree2df7890ecc4d27eb9848051da512f935d98c7cbe /cc/resources
parent1e281a45087e22389bc080e5c4f73d91fa3f7f47 (diff)
downloadchromium_src-a7d3655da073b197c313907e10b8c6054a097828.zip
chromium_src-a7d3655da073b197c313907e10b8c6054a097828.tar.gz
chromium_src-a7d3655da073b197c313907e10b8c6054a097828.tar.bz2
cc: Disable VideoResourceUpdaterTest for now
They are dying on the ASAN bot as I think the VideoFrame used in the test is wrong. Will fix and re-enable in another CL. TBR=piman BUG=260920 Review URL: https://codereview.chromium.org/19238009 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@211868 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'cc/resources')
-rw-r--r--cc/resources/video_resource_updater_unittest.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/cc/resources/video_resource_updater_unittest.cc b/cc/resources/video_resource_updater_unittest.cc
index 562b953..5fc03f9 100644
--- a/cc/resources/video_resource_updater_unittest.cc
+++ b/cc/resources/video_resource_updater_unittest.cc
@@ -54,7 +54,8 @@ class VideoResourceUpdaterTest : public testing::Test {
scoped_ptr<ResourceProvider> resource_provider3d_;
};
-TEST_F(VideoResourceUpdaterTest, SoftwareFrame) {
+// TODO(danakj): Fix this test on ASAN: crbug.com/260920
+TEST_F(VideoResourceUpdaterTest, DISABLED_SoftwareFrame) {
VideoResourceUpdater updater(resource_provider3d_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();
@@ -63,7 +64,8 @@ TEST_F(VideoResourceUpdaterTest, SoftwareFrame) {
EXPECT_EQ(VideoFrameExternalResources::YUV_RESOURCE, resources.type);
}
-TEST_F(VideoResourceUpdaterTest, LostContextForSoftwareFrame) {
+// TODO(danakj): Fix this test on ASAN: crbug.com/260920
+TEST_F(VideoResourceUpdaterTest, DISABLED_LostContextForSoftwareFrame) {
VideoResourceUpdater updater(resource_provider3d_.get());
scoped_refptr<media::VideoFrame> video_frame = CreateTestYUVVideoFrame();