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

Unified Diff: media/base/pipeline_impl_unittest.cc

Issue 8679001: Disable PipelineImplTest.AudioStream on OS X (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: media/base/pipeline_impl_unittest.cc
diff --git a/media/base/pipeline_impl_unittest.cc b/media/base/pipeline_impl_unittest.cc
index 07f773d80e1ac9db5606278f87a545610617297b..ebfd26ee2bbc30f9d1a2fece15d89f7cd465c918 100644
--- a/media/base/pipeline_impl_unittest.cc
+++ b/media/base/pipeline_impl_unittest.cc
@@ -381,7 +381,13 @@ TEST_F(PipelineImplTest, NoStreams) {
EXPECT_FALSE(pipeline_->IsInitialized());
}
-TEST_F(PipelineImplTest, AudioStream) {
+#if defined(OS_MACOSX)
+// Crashes on OS X - http://crbug.com/105234
+#define MAYBE_AudioStream DISABLED_AudioStream
+#else
+#define MAYBE_AudioStream AudioStream
+#endif
+TEST_F(PipelineImplTest, MAYBE_AudioStream) {
CreateAudioStream();
MockDemuxerStreamVector streams;
streams.push_back(audio_stream());
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698