Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(439)

Unified Diff: media/renderers/video_renderer_impl_unittest.cc

Issue 2817443004: Disable tests failing on Linux MSAN tests on chromium.memory. (Closed)
Patch Set: fix compile Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/apps/guest_view/web_view_browsertest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/renderers/video_renderer_impl_unittest.cc
diff --git a/media/renderers/video_renderer_impl_unittest.cc b/media/renderers/video_renderer_impl_unittest.cc
index 18743170a5454a7d6bb9ead9c0b246e078000942..b57cc19019cd09993d067c8f1bd4d00e176fba17 100644
--- a/media/renderers/video_renderer_impl_unittest.cc
+++ b/media/renderers/video_renderer_impl_unittest.cc
@@ -560,7 +560,13 @@ TEST_F(VideoRendererImplTest, ReinitializeForAnotherStream) {
InitializeRenderer(&new_stream, false, true);
}
-TEST_F(VideoRendererImplTest, DestroyWhileInitializing) {
+// crbug.com/697171.
+#if defined(MEMORY_SANITIZER)
+#define MAYBE_DestroyWhileInitializing DISABLED_DestroyWhileInitializing
+#else
+#define MAYBE_DestroyWhileInitializing DestroyWhileInitializing
+#endif
+TEST_F(VideoRendererImplTest, MAYBE_DestroyWhileInitializing) {
CallInitialize(&demuxer_stream_, NewExpectedStatusCB(PIPELINE_ERROR_ABORT),
false, PIPELINE_OK);
Destroy();
« no previous file with comments | « chrome/browser/apps/guest_view/web_view_browsertest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698