From 785e23be91f8d41f91e5b2ba52721c715c66e1d6 Mon Sep 17 00:00:00 2001 From: Harald Alvestrand Date: Mon, 15 Mar 2021 21:26:27 +0000 Subject: [PATCH] Drop # of video tracks in renegotiate-many-videos to 8 Bug: webrtc:12574 Change-Id: I4bd8003368c7131c63aab7b6ef1cd52b54a926e0 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/212022 Reviewed-by: Taylor Commit-Queue: Harald Alvestrand Cr-Commit-Position: refs/heads/master@{#33471} --- pc/peer_connection_integrationtest.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pc/peer_connection_integrationtest.cc b/pc/peer_connection_integrationtest.cc index faf6053adb..112826cf0a 100644 --- a/pc/peer_connection_integrationtest.cc +++ b/pc/peer_connection_integrationtest.cc @@ -3436,7 +3436,8 @@ TEST_F(PeerConnectionIntegrationTestUnifiedPlan, // - 96 on a Linux workstation // - 64 at win_x86_more_configs and win_x64_msvc_dbg // - 32 on android_arm64_rel and linux_dbg bots - while (current_size < 16) { + // - 16 on Android 64 (Nexus 5x) + while (current_size < 8) { // Double the number of tracks for (int i = 0; i < current_size; i++) { caller()->pc()->AddTransceiver(cricket::MEDIA_TYPE_VIDEO);