diff options
author | Klement Sekera <klement.sekera@gmail.com> | 2023-01-26 12:35:35 +0100 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-05-19 21:29:39 +0000 |
commit | d3e0d104ad6ebc687609c10a6c936954d2a7abdd (patch) | |
tree | d9684070f4845bd6e7f2613fd68807f630f2fa07 /test/asf/asfframework.py | |
parent | cf214cc6005ad53371bfbce9901b04bfa116207b (diff) |
tests: refactor extra_vpp_punt_config
Rename extra_vpp_punt_config to a more generic name extra_vpp_config to
better fit its purpose. It's fit for general use and already used that
way by quic and vcl tests anyway.
Type: refactor
Signed-off-by: Klement Sekera <klement.sekera@gmail.com>
Change-Id: Ib0a5789b0dbb3a8c3cae654dea4e32ac5e56dd41
Diffstat (limited to 'test/asf/asfframework.py')
-rw-r--r-- | test/asf/asfframework.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/test/asf/asfframework.py b/test/asf/asfframework.py index 5c64454df9f..1df1cb4af7b 100644 --- a/test/asf/asfframework.py +++ b/test/asf/asfframework.py @@ -288,7 +288,7 @@ class VppTestCase(CPUInterface, unittest.TestCase): """ extra_vpp_statseg_config = "" - extra_vpp_punt_config = [] + extra_vpp_config = [] extra_vpp_plugin_config = [] logger = null_logger vapi_response_timeout = 5 @@ -481,8 +481,8 @@ class VppTestCase(CPUInterface, unittest.TestCase): ] ) - if cls.extra_vpp_punt_config is not None: - cls.vpp_cmdline.extend(cls.extra_vpp_punt_config) + if cls.extra_vpp_config is not None: + cls.vpp_cmdline.extend(cls.extra_vpp_config) if not cls.debug_attach: cls.logger.info("vpp_cmdline args: %s" % cls.vpp_cmdline) |