From: Ivan Ivanets Date: Wed, 26 Mar 2025 21:53:05 +0000 (+0200) Subject: tests: fix test cov X-Git-Tag: v25.10-rc0~139 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F81%2F42581%2F1;p=vpp.git 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 --- 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)