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

Unified Diff: content/renderer/media/media_stream_audio_unittest.cc

Issue 2799663006: Disable MediaStreamAudioTest.CallbackOnTrackInitialization on Mac. (Closed)
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/media/media_stream_audio_unittest.cc
diff --git a/content/renderer/media/media_stream_audio_unittest.cc b/content/renderer/media/media_stream_audio_unittest.cc
index 225e87b2cb09531d653169236dc3350ea9740240..defbb51410b85f7b95bca729ec2fd19c03d716da 100644
--- a/content/renderer/media/media_stream_audio_unittest.cc
+++ b/content/renderer/media/media_stream_audio_unittest.cc
@@ -460,8 +460,15 @@ TEST_F(MediaStreamAudioTest, EnableAndDisableTracks) {
track()->RemoveSink(&sink);
}
+// https://crbug.com/709231 tracks test failures on Mac10.9 Tests (dbg).
+#if defined(OS_MACOSX)
+#define MAYBE_CallbackOnTrackInitialization \
+ DISABLED_CallbackOnTrackInitialization
+#else
+#define MAYBE_CallbackOnTrackInitialization CallbackOnTrackInitialization
+#endif
// Tests that a callback is fired when initialization completes on a track.
-TEST_F(MediaStreamAudioTest, CallbackOnTrackInitialization) {
+TEST_F(MediaStreamAudioTest, MAYBE_CallbackOnTrackInitialization) {
// Create a source, connect it to track, and connect the track to a
// sink.
blink_audio_source_.setExtraData(new FakeMediaStreamAudioSource());
« 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