Disabling the performance unittests on Android for the level controller.

NOTRY=true
BUG=

Review-Url: https://codereview.webrtc.org/2108723004
Cr-Commit-Position: refs/heads/master@{#13346}
This commit is contained in:
peah
2016-06-30 05:13:37 -07:00
committed by Commit bot
parent 03dd6db5cb
commit 5f6547e89c

View File

@ -304,7 +304,11 @@ TEST(LevelControllerPerformanceTest, StandaloneProcessing) {
}
}
#if !defined(WEBRTC_ANDROID)
TEST(LevelControllerPerformanceTest, ProcessingViaApm) {
#else
TEST(LevelControllerPerformanceTest, DISABLED_ProcessingViaApm) {
#endif
int sample_rates_to_test[] = {AudioProcessing::kSampleRate8kHz,
AudioProcessing::kSampleRate16kHz,
AudioProcessing::kSampleRate32kHz,
@ -321,7 +325,11 @@ TEST(LevelControllerPerformanceTest, ProcessingViaApm) {
}
}
#if !defined(WEBRTC_ANDROID)
TEST(LevelControllerPerformanceTest, InteractionWithDefaultApm) {
#else
TEST(LevelControllerPerformanceTest, DISABLED_InteractionWithDefaultApm) {
#endif
int sample_rates_to_test[] = {AudioProcessing::kSampleRate8kHz,
AudioProcessing::kSampleRate16kHz,
AudioProcessing::kSampleRate32kHz,