summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco <marpan@google.com>2015-11-03 08:15:04 -0800
committerMarco <marpan@google.com>2015-11-03 08:17:21 -0800
commitcb7b2a4f4badf167a1bba8319efd6d899620208a (patch)
tree966a4fbb214da48f1139ec90a127f738ce6d3996
parentd73e6cef758da47d582b0485e736acc2417a6f70 (diff)
downloadlibvpx-cb7b2a4f4badf167a1bba8319efd6d899620208a.tar
libvpx-cb7b2a4f4badf167a1bba8319efd6d899620208a.tar.gz
libvpx-cb7b2a4f4badf167a1bba8319efd6d899620208a.tar.bz2
libvpx-cb7b2a4f4badf167a1bba8319efd6d899620208a.zip
Adjust threshold for datarate frame drop test.
Current threshold is little too strict. Change-Id: I99ec1409d095e0c2fd3b7ab398742cabcc05700b
-rw-r--r--test/datarate_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/datarate_test.cc b/test/datarate_test.cc
index b6cae7903..7d8a0ab73 100644
--- a/test/datarate_test.cc
+++ b/test/datarate_test.cc
@@ -538,7 +538,7 @@ TEST_P(DatarateTestVP9Large, ChangingDropFrameThresh) {
<< " The first dropped frame for drop_thresh " << i
<< " > first dropped frame for drop_thresh "
<< i - kDropFrameThreshTestStep;
- ASSERT_GE(num_drops_, last_num_drops * 0.90)
+ ASSERT_GE(num_drops_, last_num_drops * 0.85)
<< " The number of dropped frames for drop_thresh " << i
<< " < number of dropped frames for drop_thresh "
<< i - kDropFrameThreshTestStep;