diff options
Diffstat (limited to 'test/asf')
-rw-r--r-- | test/asf/asfframework.py | 6 | ||||
-rw-r--r-- | test/asf/test_quic.py | 4 | ||||
-rw-r--r-- | test/asf/test_vcl.py | 2 |
3 files changed, 6 insertions, 6 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) diff --git a/test/asf/test_quic.py b/test/asf/test_quic.py index 681385a0046..8179b2f2366 100644 --- a/test/asf/test_quic.py +++ b/test/asf/test_quic.py @@ -133,7 +133,7 @@ class QUICEchoIntTestCase(QUICTestCase): """QUIC Echo Internal Test Case""" test_bytes = " test-bytes" - extra_vpp_punt_config = ["session", "{", "enable", "poll-main", "}"] + extra_vpp_config = ["session", "{", "enable", "poll-main", "}"] def setUp(self): super(QUICEchoIntTestCase, self).setUp() @@ -204,7 +204,7 @@ class QUICEchoExtTestCase(QUICTestCase): vpp_worker_count = 1 server_fifo_size = "1M" client_fifo_size = "4M" - extra_vpp_punt_config = [ + extra_vpp_config = [ "session", "{", "enable", diff --git a/test/asf/test_vcl.py b/test/asf/test_vcl.py index fbc824904d3..9853529da56 100644 --- a/test/asf/test_vcl.py +++ b/test/asf/test_vcl.py @@ -67,7 +67,7 @@ class VCLTestCase(VppTestCase): def setUpClass(cls): if cls.session_startup: conf = "session {" + " ".join(cls.session_startup) + "}" - cls.extra_vpp_punt_config = [conf] + cls.extra_vpp_config = [conf] super(VCLTestCase, cls).setUpClass() @classmethod |