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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 |
OLD | NEW |