Disable failing perf test on Android.

A decision was recently made to limit downscaling to 320x180 on
Android. This causes the perf tests to fail. This test is no
longer valid on android, as the failure is expected behaviour.

BUG=None
NOTRY=true
TBR=phoglund@webrtc.org

Review-Url: https://codereview.webrtc.org/2563913003
Cr-Commit-Position: refs/heads/master@{#15510}
This commit is contained in:
kthelgason
2016-12-09 06:15:19 -08:00
committed by Commit bot
parent 50254636d4
commit ca87b62ede

View File

@ -471,7 +471,12 @@ TEST_F(CallPerfTest, CaptureNtpTimeWithNetworkJitter) {
const int kRunTimeMs = 20000;
TestCaptureNtpTime(net_config, kThresholdMs, kStartTimeMs, kRunTimeMs);
}
#if defined(WEBRTC_ANDROID)
// This test is disabled on android as it does not update
// sinkWants below 320x180, the starting resolution for these
// tests.
#define ReceivesCpuOveruseAndUnderuse DISABLED_ReceivesCpuOveruseAndUnderuse
#endif
TEST_F(CallPerfTest, ReceivesCpuOveruseAndUnderuse) {
class LoadObserver : public test::SendTest,
public test::FrameGeneratorCapturer::SinkWantsObserver {