From: Dave Barach Date: Wed, 10 Feb 2021 12:40:05 +0000 (-0500) Subject: vppinfra: fix bihash test-debug aarch64 sporadic failure X-Git-Tag: v21.10-rc0~558 X-Git-Url: https://gerrit.fd.io/r/gitweb?a=commitdiff_plain;h=b60620b9b5d5e07d2739a2d9ad2ac92286d80daa;p=vpp.git vppinfra: fix bihash test-debug aarch64 sporadic failure Turns out that both the multi-core and single-core add / del tests run for just under 5 seconds (aarch64, debug image). Increase the vapi => debug CLI timeout to avoid spurious failures. Type: test Signed-off-by: Dave Barach Change-Id: Ia64bffa82a908172a21c34f3ae4402ad774af28a --- diff --git a/src/vppinfra/test/test_bihash.py b/src/vppinfra/test/test_bihash.py index 019929a0a72..2949d66750d 100644 --- a/src/vppinfra/test/test_bihash.py +++ b/src/vppinfra/test/test_bihash.py @@ -11,6 +11,9 @@ class TestBihash(VppTestCase): @classmethod def setUpClass(cls): + # increase vapi timeout, to avoid spurious "test bihash ..." + # failures reported on aarch64 w/ test-debug + cls.vapi_response_timeout = 20 super(TestBihash, cls).setUpClass() @classmethod