From 14ac793c59bcbf639997655b03f1508061757f4f Mon Sep 17 00:00:00 2001 From: Ilya Nikolaevskiy Date: Thu, 12 Jul 2018 10:39:41 +0200 Subject: [PATCH] Temporarly disable KSVC perf tests on Mac because of crashes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bug: webrtc:9506 Change-Id: Ic5da1433ab7a3dfe634a1048ba7a73c5d67ef5c4 Reviewed-on: https://webrtc-review.googlesource.com/88362 Reviewed-by: Erik Språng Commit-Queue: Ilya Nikolaevskiy Cr-Commit-Position: refs/heads/master@{#23949} --- video/full_stack_tests.cc | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/video/full_stack_tests.cc b/video/full_stack_tests.cc index b9a94ae7ea..07ca2485c1 100644 --- a/video/full_stack_tests.cc +++ b/video/full_stack_tests.cc @@ -762,6 +762,9 @@ TEST(FullStackTest, VP9SVC_3SL_Low) { fixture->RunWithAnalyzer(simulcast); } +// bugs.webrtc.org/9506 +#if !defined(WEBRTC_MAC) + TEST(FullStackTest, VP9KSVC_3SL_High) { auto fixture = CreateVideoQualityTestFixture(); ParamsWithLogging simulcast; @@ -814,6 +817,7 @@ TEST(FullStackTest, VP9KSVC_3SL_Medium_Network_Restricted) { simulcast.pipe.link_capacity_kbps = 1000; fixture->RunWithAnalyzer(simulcast); } +#endif // !defined(WEBRTC_MAC) #endif // !defined(RTC_DISABLE_VP9)