Disables slow scenario test on IOS ARM64 debug builds.

Bug: webtrc:10515
Change-Id: I742ae67d56080430d1f8756a94c8508ea8fedc35
Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/132019
Reviewed-by: Artem Titarenko <artit@webrtc.org>
Commit-Queue: Sebastian Jansson <srte@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#27522}
This commit is contained in:
Sebastian Jansson 2019-04-09 15:15:24 +02:00 committed by Commit Bot
parent cf267052b3
commit 869411805b

View File

@ -85,6 +85,12 @@ void SetupVideoCall(Scenario& s, VideoQualityAnalyzer* analyzer) {
}
} // namespace
// TODO(bugs.webrtc.org/10515): Remove this when performance has been improved.
#if defined(WEBRTC_IOS) && defined(WEBRTC_ARCH_ARM64) && !defined(NDEBUG)
#define MAYBE_SimTimeEncoding DISABLED_SimTimeEncoding
#else
#define MAYBE_SimTimeEncoding SimTimeEncoding
#endif
TEST(ScenarioTest, MAYBE_SimTimeEncoding) {
VideoQualityAnalyzerConfig analyzer_config;
analyzer_config.psnr_coverage = 0.1;
@ -99,6 +105,7 @@ TEST(ScenarioTest, MAYBE_SimTimeEncoding) {
EXPECT_EQ(analyzer.stats().lost_count, 0);
}
// TODO(bugs.webrtc.org/10515): Remove this when performance has been improved.
#if defined(WEBRTC_IOS) && defined(WEBRTC_ARCH_ARM64) && !defined(NDEBUG)
#define MAYBE_RealTimeEncoding DISABLED_RealTimeEncoding
#else