From: Johann Date: Mon, 23 Jan 2017 21:30:37 +0000 (-0800) Subject: PartialIDctTest: reduce number of RunQuantCheck iterations X-Git-Tag: v1.7.0~789 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=270fadc135b2005a6f23a87ab0f27ddb93cdc5e8;p=libvpx PartialIDctTest: reduce number of RunQuantCheck iterations This currently runs 1000 * 1000 = one *million* times which is quite unnecessary. It's one of the slowest items in Jenkins and takes over an hour for each of the larger transforms. Change-Id: I01653b5e610683e1a2d778ec60cf5065562ab8db --- diff --git a/test/partial_idct_test.cc b/test/partial_idct_test.cc index 7e901bd03..da6da52ad 100644 --- a/test/partial_idct_test.cc +++ b/test/partial_idct_test.cc @@ -191,7 +191,7 @@ TEST_P(PartialIDctTest, RunQuantCheck) { DECLARE_ALIGNED(16, tran_low_t, output_ref_block[kMaxNumCoeffs]); InitMem(); - for (int i = 0; i < kCountTestBlock * kCountTestBlock; ++i) { + for (int i = 0; i < kCountTestBlock; ++i) { // Initialize a test block with input range [-mask_, mask_]. if (i == 0) { for (int k = 0; k < input_block_size_; ++k) {