From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: [PATCH] app/test: increase memory allocated for greedy autotests Date: Tue, 19 Jul 2016 19:21:53 +0200 Message-ID: <1468948913-23533-1-git-send-email-thomas.monjalon@6wind.com> To: dev@dpdk.org Return-path: Received: from mail-wm0-f50.google.com (mail-wm0-f50.google.com [74.125.82.50]) by dpdk.org (Postfix) with ESMTP id 428EDF72 for ; Tue, 19 Jul 2016 19:21:59 +0200 (CEST) Received: by mail-wm0-f50.google.com with SMTP id i5so34853615wmg.0 for ; Tue, 19 Jul 2016 10:21:59 -0700 (PDT) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id r16sm24499920wme.16.2016.07.19.10.21.57 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 19 Jul 2016 10:21:57 -0700 (PDT) List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 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 --- 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 c69705e..defd46e 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.7.0