From d98d38c0602d3545dda328acd27e08194e4bc47a Mon Sep 17 00:00:00 2001 From: tschumim Date: Mon, 17 Jul 2017 08:19:27 -0700 Subject: [PATCH] Don't run NoBandwidthDropAfterDtx test on andriod because it's flaky. BUG=None Review-Url: https://codereview.webrtc.org/2977233002 Cr-Commit-Position: refs/heads/master@{#19057} --- webrtc/audio/test/audio_bwe_integration_test.cc | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webrtc/audio/test/audio_bwe_integration_test.cc b/webrtc/audio/test/audio_bwe_integration_test.cc index d3f7f0bba7..088c823eb7 100644 --- a/webrtc/audio/test/audio_bwe_integration_test.cc +++ b/webrtc/audio/test/audio_bwe_integration_test.cc @@ -139,7 +139,14 @@ class NoBandwidthDropAfterDtx : public AudioBweTest { using AudioBweIntegrationTest = CallTest; -TEST_F(AudioBweIntegrationTest, NoBandwidthDropAfterDtx) { +// TODO(tschumim): This test is flaky when run on android. Re-enable the test +// for android when the issue is fixed. +#if defined(WEBRTC_ANDROID) +#define MAYBE_NoBandwidthDropAfterDtx DISABLED_NoBandwidthDropAfterDtx +#else +#define MAYBE_NoBandwidthDropAfterDtx NoBandwidthDropAfterDtx +#endif +TEST_F(AudioBweIntegrationTest, MAYBE_NoBandwidthDropAfterDtx) { webrtc::test::ScopedFieldTrials override_field_trials( "WebRTC-Audio-SendSideBwe/Enabled/" "WebRTC-SendSideBwe-WithOverhead/Enabled/");