aboutsummaryrefslogtreecommitdiffstats
path: root/src/vppinfra
diff options
context:
space:
mode:
authorDave Barach <dave@barachs.net>2021-02-10 07:40:05 -0500
committerAndrew Yourtchenko <ayourtch@gmail.com>2021-02-10 15:37:07 +0000
commitb60620b9b5d5e07d2739a2d9ad2ac92286d80daa (patch)
tree8b3e2dc7370ca1d7cd239ffde479559d68ca02f7 /src/vppinfra
parent9ec846c2684b69f47505d73ea9f873b793a11558 (diff)
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 <dave@barachs.net> Change-Id: Ia64bffa82a908172a21c34f3ae4402ad774af28a
Diffstat (limited to 'src/vppinfra')
-rw-r--r--src/vppinfra/test/test_bihash.py3
1 files changed, 3 insertions, 0 deletions
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