From a47994b2097740c4dddd3e16e6ffc3a23974cb12 Mon Sep 17 00:00:00 2001 From: Hui Su Date: Tue, 2 Jan 2018 12:12:47 -0800 Subject: [PATCH] MotionVectorTestLarge: reduce height on 32-bit system Reduce height from 540 t0 360, hopefully to resolve the test failures related to OOM. BUG=aomedia:1177 Change-Id: Ia697d8d820a664e76f9a455189d4a58068591ddd --- test/motion_vector_test.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/motion_vector_test.cc b/test/motion_vector_test.cc index 9b6f46a3d..5e21583d0 100644 --- a/test/motion_vector_test.cc +++ b/test/motion_vector_test.cc @@ -82,7 +82,7 @@ TEST_P(MotionVectorTestLarge, OverallTest) { // Reduce the test clip's resolution while testing on 32-bit system. if (sizeof(void *) == 4) { width = 2048; - height = 540; + height = 360; } cfg_.rc_target_bitrate = 24000; -- GitLab