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

Side by Side Diff: webrtc/modules/audio_processing/level_controller/level_controller_complexity_unittest.cc

Issue 2897403006: Disabling flaky complexity tests for the audio processing module. (Closed)
Patch Set: Created 3 years, 6 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
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2016 The WebRTC project authors. All Rights Reserved. 2 * Copyright (c) 2016 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 10
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
180 "_" + std::to_string(render_input_sample_rate_hz) + "_" + 180 "_" + std::to_string(render_input_sample_rate_hz) + "_" +
181 std::to_string(render_output_sample_rate_hz) + "_" + 181 std::to_string(render_output_sample_rate_hz) + "_" +
182 std::to_string(capture_input_sample_rate_hz) + "_" + 182 std::to_string(capture_input_sample_rate_hz) + "_" +
183 std::to_string(capture_output_sample_rate_hz) + "Hz_" + 183 std::to_string(capture_output_sample_rate_hz) + "Hz_" +
184 std::to_string(num_channels) + "_channels" + "_total", 184 std::to_string(num_channels) + "_channels" + "_total",
185 test_description, FormPerformanceMeasureString(total_timer), "us", false); 185 test_description, FormPerformanceMeasureString(total_timer), "us", false);
186 } 186 }
187 187
188 } // namespace 188 } // namespace
189 189
190 TEST(LevelControllerPerformanceTest, StandaloneProcessing) { 190 TEST(LevelControllerPerformanceTest, DISABLED_StandaloneProcessing) {
hlundin-webrtc 2017/05/29 12:57:25 Please, add a comment with reference to issue 7712
peah-webrtc 2017/07/03 15:48:34 Done.
191 int sample_rates_to_test[] = { 191 int sample_rates_to_test[] = {
192 AudioProcessing::kSampleRate8kHz, AudioProcessing::kSampleRate16kHz, 192 AudioProcessing::kSampleRate8kHz, AudioProcessing::kSampleRate16kHz,
193 AudioProcessing::kSampleRate32kHz, AudioProcessing::kSampleRate48kHz}; 193 AudioProcessing::kSampleRate32kHz, AudioProcessing::kSampleRate48kHz};
194 for (auto sample_rate : sample_rates_to_test) { 194 for (auto sample_rate : sample_rates_to_test) {
195 for (size_t num_channels = 1; num_channels <= 2; ++num_channels) { 195 for (size_t num_channels = 1; num_channels <= 2; ++num_channels) {
196 RunStandaloneSubmodule(sample_rate, num_channels); 196 RunStandaloneSubmodule(sample_rate, num_channels);
197 } 197 }
198 } 198 }
199 } 199 }
200 200
(...skipping 12 matching lines...) Expand all
213 use_mobile_agc, include_default_apm_processing); 213 use_mobile_agc, include_default_apm_processing);
214 214
215 // Then test mono combinations. 215 // Then test mono combinations.
216 num_channels = 1; 216 num_channels = 1;
217 RunTogetherWithApm(test_name, 48000, 48000, AudioProcessing::kSampleRate48kHz, 217 RunTogetherWithApm(test_name, 48000, 48000, AudioProcessing::kSampleRate48kHz,
218 AudioProcessing::kSampleRate48kHz, num_channels, 218 AudioProcessing::kSampleRate48kHz, num_channels,
219 use_mobile_agc, include_default_apm_processing); 219 use_mobile_agc, include_default_apm_processing);
220 } 220 }
221 221
222 #if !defined(WEBRTC_ANDROID) 222 #if !defined(WEBRTC_ANDROID)
223 TEST(LevelControllerPerformanceTest, ProcessingViaApm) { 223 TEST(LevelControllerPerformanceTest, DISABLED_ProcessingViaApm) {
hlundin-webrtc 2017/05/29 12:57:25 Please, add a comment with reference to issue 7712
peah-webrtc 2017/07/03 15:48:34 Done.
224 #else 224 #else
225 TEST(LevelControllerPerformanceTest, DISABLED_ProcessingViaApm) { 225 TEST(LevelControllerPerformanceTest, DISABLED_ProcessingViaApm) {
226 #endif 226 #endif
227 // Run without default APM processing and desktop AGC. 227 // Run without default APM processing and desktop AGC.
228 TestSomeSampleRatesWithApm("SimpleLevelControlViaApm", false, false); 228 TestSomeSampleRatesWithApm("SimpleLevelControlViaApm", false, false);
229 } 229 }
230 230
231 #if !defined(WEBRTC_ANDROID) 231 #if !defined(WEBRTC_ANDROID)
232 TEST(LevelControllerPerformanceTest, InteractionWithDefaultApm) { 232 TEST(LevelControllerPerformanceTest, DISABLED_InteractionWithDefaultApm) {
hlundin-webrtc 2017/05/29 12:57:25 Please, add a comment with reference to issue 7712
peah-webrtc 2017/07/03 15:48:34 Done.
233 #else 233 #else
234 TEST(LevelControllerPerformanceTest, DISABLED_InteractionWithDefaultApm) { 234 TEST(LevelControllerPerformanceTest, DISABLED_InteractionWithDefaultApm) {
235 #endif 235 #endif
236 bool include_default_apm_processing = true; 236 bool include_default_apm_processing = true;
237 TestSomeSampleRatesWithApm("LevelControlAndDefaultDesktopApm", false, 237 TestSomeSampleRatesWithApm("LevelControlAndDefaultDesktopApm", false,
238 include_default_apm_processing); 238 include_default_apm_processing);
239 TestSomeSampleRatesWithApm("LevelControlAndDefaultMobileApm", true, 239 TestSomeSampleRatesWithApm("LevelControlAndDefaultMobileApm", true,
240 include_default_apm_processing); 240 include_default_apm_processing);
241 } 241 }
242 242
243 } // namespace webrtc 243 } // namespace webrtc
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698