Commit 7b536cbc authored by dpranke@chromium.org's avatar dpranke@chromium.org

Bump up average_time_between_callback_ms for audio unittest

AudioAndroidOutputTest.StartOutputStreamCallbacksNonDefaultParameters
checks to make sure the callbacks are not exceeding 1.3x the average callback
time, but this appears to be a bit too aggressive on some android devices,
and bots are failing the test.

Increasing the threshold to 1.35x for now until some code owner can look at
this and see if there is a better fix.

TBR=dalecurtis@chromium.org, tommi@chromium.org, henrika@chromium.org
BUG=373945

Review URL: https://codereview.chromium.org/289073003

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@270836 0039d316-1c4b-4281-b951-d872f2087c98
parent 3fdde503
......@@ -523,7 +523,7 @@ class AudioAndroidOutputTest : public testing::Test {
EXPECT_GE(average_time_between_callbacks_ms,
0.70 * expected_time_between_callbacks_ms);
EXPECT_LE(average_time_between_callbacks_ms,
1.30 * expected_time_between_callbacks_ms);
1.35 * expected_time_between_callbacks_ms);
}
void GetDefaultOutputStreamParameters() {
......
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