diff options
author | Paul Vinciguerra <pvinci@vinciconsulting.com> | 2019-10-26 22:25:49 -0400 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2019-11-27 17:00:12 +0000 |
commit | bfd7d294d06e22f7bf809e8ac26220ebf51db683 (patch) | |
tree | 25d5796ce49f9047cee821d8b98307b909979815 /test/framework.py | |
parent | 1a7ed5e3e62dfe77832022a46ee32d744a347ac5 (diff) |
vlib: add 'wait' cli command
When running exec scripts, there can be a need to wait between statements.
Type: feature
Change-Id: I2a45b390697e09fc222358c9354f28e3368a06ba
Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'test/framework.py')
-rw-r--r-- | test/framework.py | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/test/framework.py b/test/framework.py index 02c56fbcfe4..24ee8692976 100644 --- a/test/framework.py +++ b/test/framework.py @@ -267,6 +267,7 @@ class VppTestCase(unittest.TestCase): extra_vpp_punt_config = [] extra_vpp_plugin_config = [] + vapi_response_timeout = 5 @property def packet_infos(self): @@ -550,11 +551,9 @@ class VppTestCase(unittest.TestCase): cls.pump_thread.daemon = True cls.pump_thread.start() if cls.debug_gdb or cls.debug_gdbserver: - read_timeout = 0 - else: - read_timeout = 5 + cls.vapi_response_timeout = 0 cls.vapi = VppPapiProvider(cls.shm_prefix, cls.shm_prefix, cls, - read_timeout) + cls.vapi_response_timeout) if cls.step: hook = hookmodule.StepHook(cls) else: |