From 6262b92eaab365d52b551fa78adfd871ed59000e Mon Sep 17 00:00:00 2001 From: Thomas Monjalon Date: Tue, 19 Jul 2016 19:15:34 +0200 Subject: [PATCH 1/1] app/test: increase memory allocated for greedy autotests The autotest lists, requirements and distribution needs a big rework to reduce the amount of cores and memory required. The root cause is not addressed yet. This patch just increase some memory allocation for some greedy tests which often fail because of memory fragmentation: LPM6 and reentrancy tests in groups 3 and 6 respectively. Signed-off-by: Thomas Monjalon Tested-by: Olivier Matz --- app/test/autotest_data.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/test/autotest_data.py b/app/test/autotest_data.py index c69705ed45..defd46e888 100644 --- a/app/test/autotest_data.py +++ b/app/test/autotest_data.py @@ -158,7 +158,7 @@ parallel_test_group_list = [ }, { "Prefix": "group_3", - "Memory" : per_sockets(390), + "Memory" : per_sockets(512), "Tests" : [ { @@ -287,7 +287,7 @@ parallel_test_group_list = [ }, { "Prefix": "group_6", - "Memory" : per_sockets(128), + "Memory" : per_sockets(512), "Tests" : [ { -- 2.20.1