Commit 1b4e3d75 authored by Hongchan Choi's avatar Hongchan Choi Committed by Commit Bot

Reduce concurent context counts in offlineaudio-thread-smoke-test.html

1000 contexts were causing time out in Linux and Mac OS bots. Lowering
the count to 500.

Bug: 1092145
Change-Id: Iaee7b4b408e551236252b3b2f163240249c5697b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2309805Reviewed-by: default avatarRaymond Toy <rtoy@chromium.org>
Commit-Queue: Hongchan Choi <hongchan@chromium.org>
Cr-Commit-Position: refs/heads/master@{#790986}
parent c727f0eb
...@@ -19,10 +19,9 @@ ...@@ -19,10 +19,9 @@
const numberOfChannels = 1; const numberOfChannels = 1;
const renderLength = 1; const renderLength = 1;
// Create 1000 contexts in total. 58.0.3029 on OSX crashes around 2030, // 1000 concurrent contexts caused this test to time out on Mac OS and
// but creating ~2000 threads makes some try bots time-out. // Linux. (See: crbug.com/1092145, crbug.com/741699)
// (crbug.com/741699) const maxNumberOfContexts = 500;
const maxNumberOfContexts = 1000;
let contexts = []; let contexts = [];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment