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

Unified Diff: media/audio/android/audio_android_unittest.cc

Issue 2852323004: [Audio] Mark AudioAndroidInputTest.StartInputStreamCallbacks* flaky (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: media/audio/android/audio_android_unittest.cc
diff --git a/media/audio/android/audio_android_unittest.cc b/media/audio/android/audio_android_unittest.cc
index d5ca8c9163a79f937ce92fe63776df6eb58eb751..41aa7d90b8f89a608db188a555d84c2b9cadbac0 100644
--- a/media/audio/android/audio_android_unittest.cc
+++ b/media/audio/android/audio_android_unittest.cc
@@ -795,7 +795,8 @@ TEST_F(AudioAndroidOutputTest, OpenAndCloseOutputStream) {
// Start input streaming using default input parameters and ensure that the
// callback sequence is sane.
-TEST_P(AudioAndroidInputTest, StartInputStreamCallbacks) {
+// Flaky, see crbug.com/683408.
+TEST_P(AudioAndroidInputTest, DISABLED_StartInputStreamCallbacks) {
AudioParameters native_params = GetInputStreamParameters();
StartInputStreamCallbacks(native_params);
}
@@ -803,7 +804,9 @@ TEST_P(AudioAndroidInputTest, StartInputStreamCallbacks) {
// Start input streaming using non default input parameters and ensure that the
// callback sequence is sane. The only change we make in this test is to select
// a 10ms buffer size instead of the default size.
-TEST_P(AudioAndroidInputTest, StartInputStreamCallbacksNonDefaultParameters) {
+// Flaky, see crbug.com/683408.
+TEST_P(AudioAndroidInputTest,
+ DISABLED_StartInputStreamCallbacksNonDefaultParameters) {
AudioParameters params = GetInputStreamParameters();
params.set_frames_per_buffer(params.sample_rate() / 100);
StartInputStreamCallbacks(params);
« 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