From 338b195c0d7274b921eb18944d27ed1b4cb3739f Mon Sep 17 00:00:00 2001 From: Peter Mikus Date: Thu, 12 Jul 2018 12:50:16 +0000 Subject: [PATCH] Add stats segment heapsize to default config - Scale tests (ip4, ip6) are failing due to low amount of stats segment heapsize. Change-Id: Id9b3e84d5a5c63014c17041c08c00ef6188afa5f Signed-off-by: Peter Mikus --- resources/libraries/python/VppConfigGenerator.py | 9 +++++++++ resources/libraries/robot/shared/default.robot | 1 + 2 files changed, 10 insertions(+) diff --git a/resources/libraries/python/VppConfigGenerator.py b/resources/libraries/python/VppConfigGenerator.py index 93296eba36..e5a54422c7 100644 --- a/resources/libraries/python/VppConfigGenerator.py +++ b/resources/libraries/python/VppConfigGenerator.py @@ -424,6 +424,15 @@ class VppConfigGenerator(object): path = ['ip', 'heap-size'] self.add_config_item(self._nodeconfig, value, path) + def add_statseg_size(self, value): + """Add stats segment heap size configuration. + + :param value: Stats heapsize amount. + :type value: str + """ + path = ['statseg', 'size'] + self.add_config_item(self._nodeconfig, value, path) + def add_plugin(self, state, *plugins): """Add plugin section for specific plugin(s). diff --git a/resources/libraries/robot/shared/default.robot b/resources/libraries/robot/shared/default.robot index f450dc2a05..b3e10dc2d3 100644 --- a/resources/libraries/robot/shared/default.robot +++ b/resources/libraries/robot/shared/default.robot @@ -126,6 +126,7 @@ | | | Run keyword | ${dut}.Add DPDK Log Level | debug | | | Run keyword | ${dut}.Add DPDK Uio Driver | | | Run keyword | ${dut}.Add Heapsize | 4G +| | | Run keyword | ${dut}.Add Statseg size | 4G | | | Run keyword | ${dut}.Add Plugin | disable | default | | | Run keyword | ${dut}.Add Plugin | enable | @{plugins_to_enable} | | | Run keyword | ${dut}.Add IP6 Hash Buckets | 2000000 -- 2.16.6