OLD | NEW |
---|---|
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 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
707 | 707 |
708 EXPECT_EQ(result, AudioProcessing::kNoError); | 708 EXPECT_EQ(result, AudioProcessing::kNoError); |
709 | 709 |
710 return !test_->MaybeEndTest(); | 710 return !test_->MaybeEndTest(); |
711 } | 711 } |
712 | 712 |
713 const float CallSimulator::kRenderInputFloatLevel = 0.5f; | 713 const float CallSimulator::kRenderInputFloatLevel = 0.5f; |
714 const float CallSimulator::kCaptureInputFloatLevel = 0.03125f; | 714 const float CallSimulator::kCaptureInputFloatLevel = 0.03125f; |
715 } // anonymous namespace | 715 } // anonymous namespace |
716 | 716 |
717 TEST_P(CallSimulator, ApiCallDurationTest) { | 717 TEST_P(CallSimulator, DISABLED_ApiCallDurationTest) { |
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.
| |
718 // Run test and verify that it did not time out. | 718 // Run test and verify that it did not time out. |
719 EXPECT_EQ(kEventSignaled, Run()); | 719 EXPECT_EQ(kEventSignaled, Run()); |
720 } | 720 } |
721 | 721 |
722 INSTANTIATE_TEST_CASE_P( | 722 INSTANTIATE_TEST_CASE_P( |
723 AudioProcessingPerformanceTest, | 723 AudioProcessingPerformanceTest, |
724 CallSimulator, | 724 CallSimulator, |
725 ::testing::ValuesIn(SimulationConfig::GenerateSimulationConfigs())); | 725 ::testing::ValuesIn(SimulationConfig::GenerateSimulationConfigs())); |
726 | 726 |
727 } // namespace webrtc | 727 } // namespace webrtc |
OLD | NEW |