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

Unified Diff: webrtc/video/vie_encoder_unittest.cc

Issue 2720003002: Disable flaky ViEEncoderTest.NrOfDroppedFramesLimited (Closed)
Patch Set: Created 3 years, 10 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: webrtc/video/vie_encoder_unittest.cc
diff --git a/webrtc/video/vie_encoder_unittest.cc b/webrtc/video/vie_encoder_unittest.cc
index faa48330aa9984b967deaafe453d9f3c20f4fb91..320f664840456f8ea1a7b2415f1d19f035a68f13 100644
--- a/webrtc/video/vie_encoder_unittest.cc
+++ b/webrtc/video/vie_encoder_unittest.cc
@@ -1138,7 +1138,13 @@ TEST_F(ViEEncoderTest, DropsFramesAndScalesWhenBitrateIsTooLow) {
vie_encoder_->Stop();
}
-TEST_F(ViEEncoderTest, NrOfDroppedFramesLimited) {
+#if defined(MEMORY_SANITIZER)
+// Fails under MemorySanitizer: See http://crbug.com/webrtc/7232
+#define MAYBE_NrOfDroppedFramesLimited DISABLED_NrOfDroppedFramesLimited
+#else
+#define MAYBE_NrOfDroppedFramesLimited NrOfDroppedFramesLimited
+#endif
+TEST_F(ViEEncoderTest, MAYBE_NrOfDroppedFramesLimited) {
// 1kbps. This can never be achieved.
vie_encoder_->OnBitrateUpdated(1000, 0, 0);
int frame_width = 640;
« 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