X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=test%2Fframework.py;h=2ea5c7c1626fdfc90d3b704bf9c8e71136006330;hb=d3e0d104ad6ebc687609c10a6c936954d2a7abdd;hp=f90aa43c9f2ce45d744362b4db107db9eaaffee1;hpb=cf214cc6005ad53371bfbce9901b04bfa116207b;p=vpp.git diff --git a/test/framework.py b/test/framework.py index f90aa43c9f2..2ea5c7c1626 100644 --- a/test/framework.py +++ b/test/framework.py @@ -329,7 +329,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 @@ -538,8 +538,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)