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

Side by Side Diff: webrtc/modules/audio_processing/audio_processing_performance_unittest.cc

Issue 2897403006: Disabling flaky complexity tests for the audio processing module. (Closed)
Patch Set: Changes in response to reviewer comments Created 3 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source 5 * that can be found in the LICENSE file in the root of the source
6 * tree. An additional intellectual property rights grant can be found 6 * tree. An additional intellectual property rights grant can be found
7 * in the file PATENTS. All contributing project authors may 7 * in the file PATENTS. All contributing project authors may
8 * be found in the AUTHORS file in the root of the source tree. 8 * be found in the AUTHORS file in the root of the source tree.
9 */ 9 */
10 #include "webrtc/modules/audio_processing/audio_processing_impl.h" 10 #include "webrtc/modules/audio_processing/audio_processing_impl.h"
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after
706 706
707 EXPECT_EQ(result, AudioProcessing::kNoError); 707 EXPECT_EQ(result, AudioProcessing::kNoError);
708 708
709 return !test_->MaybeEndTest(); 709 return !test_->MaybeEndTest();
710 } 710 }
711 711
712 const float CallSimulator::kRenderInputFloatLevel = 0.5f; 712 const float CallSimulator::kRenderInputFloatLevel = 0.5f;
713 const float CallSimulator::kCaptureInputFloatLevel = 0.03125f; 713 const float CallSimulator::kCaptureInputFloatLevel = 0.03125f;
714 } // anonymous namespace 714 } // anonymous namespace
715 715
716 TEST_P(CallSimulator, ApiCallDurationTest) { 716 // TODO(peah): Reactivate once issue 7712 has been resolved.
717 TEST_P(CallSimulator, DISABLED_ApiCallDurationTest) {
717 // Run test and verify that it did not time out. 718 // Run test and verify that it did not time out.
718 EXPECT_EQ(kEventSignaled, Run()); 719 EXPECT_EQ(kEventSignaled, Run());
719 } 720 }
720 721
721 INSTANTIATE_TEST_CASE_P( 722 INSTANTIATE_TEST_CASE_P(
722 AudioProcessingPerformanceTest, 723 AudioProcessingPerformanceTest,
723 CallSimulator, 724 CallSimulator,
724 ::testing::ValuesIn(SimulationConfig::GenerateSimulationConfigs())); 725 ::testing::ValuesIn(SimulationConfig::GenerateSimulationConfigs()));
725 726
726 } // namespace webrtc 727 } // namespace webrtc
OLDNEW
« no previous file with comments | « no previous file | webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698