diff options
author | 2025-03-26 23:53:05 +0200 | |
---|---|---|
committer | 2025-03-26 23:56:29 +0200 | |
commit | 83219f96cdef4b08e2d6a2b8a1dca5bcb3f625f4 (patch) | |
tree | 7420582095481c422331466db9fa38b77658481f | |
parent | 11ae60ce0c6b2bb5e8f8f32a2a80da927ceeac38 (diff) |
tests: fix test cov
Type: test
Need to add cli response waiting timeout for test cov for test_session_sdl
and test_pg_stream.
Change-Id: I3eedfdb0de1ca01d9786742986fbcce2487500e3
Signed-off-by: Ivan Ivanets <iivanets@cisco.com>
-rw-r--r-- | test/asf/asfframework.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/asf/asfframework.py b/test/asf/asfframework.py index 7670a0753d1..8e565d26a52 100644 --- a/test/asf/asfframework.py +++ b/test/asf/asfframework.py @@ -652,6 +652,8 @@ class VppAsfTestCase(CPUInterface, unittest.TestCase): cls.pump_thread.start() if cls.debug_gdb or cls.debug_gdbserver or cls.debug_attach: cls.vapi_response_timeout = 0 + elif config.gcov: + cls.vapi_response_timeout = 20 cls.vapi = VppPapiProvider(cls.__name__, cls, cls.vapi_response_timeout) if cls.step: hook = hookmodule.StepHook(cls) |