aboutsummaryrefslogtreecommitdiffstats
path: root/src/vcl/test
diff options
context:
space:
mode:
authorDave Wallace <dwallacelf@gmail.com>2020-04-03 19:48:48 -0400
committerDave Barach <openvpp@barachs.net>2020-04-04 12:04:15 +0000
commit3102c382f0c470e95b2ba7c399a2418e2dc1542a (patch)
tree74bba07bc71b0f435d6374288cbd35c6bbd70b7b /src/vcl/test
parent00e01d3e875bb18397ff81e0f58f9b468477f473 (diff)
vcl: fix vcl_test.py sonarcloud issue
- Updated comment to indicate the original intermittent test failure still occurs when running make test with TEST_JOBS > 1. - The original workaround has been retained until the root cause can be determined to avoid test failures in the LF CI infra with patches containing non-vcl code changes. Type: test Signed-off-by: Dave Wallace <dwallacelf@gmail.com> Change-Id: I2645acd4bf2b16fbb2b0e297c8c2919fc6199c13
Diffstat (limited to 'src/vcl/test')
-rw-r--r--src/vcl/test/test_vcl.py23
1 files changed, 9 insertions, 14 deletions
diff --git a/src/vcl/test/test_vcl.py b/src/vcl/test/test_vcl.py
index d49bfbcaa35..ea57c90be2e 100644
--- a/src/vcl/test/test_vcl.py
+++ b/src/vcl/test/test_vcl.py
@@ -500,20 +500,15 @@ class LDPThruHostStackBidirNsock(VCLTestCase):
super(LDPThruHostStackBidirNsock, self).setUp()
self.thru_host_stack_setup()
- if self.vppDebug:
- self.client_bi_dir_nsock_timeout = 20
- self.client_bi_dir_nsock_test_args = ["-N", "1000", "-B", "-X",
- # OUCH! Host Stack Bug?
- # "-I", "2",
- self.loop0.local_ip4,
- self.server_port]
- else:
- self.client_bi_dir_nsock_timeout = 20
- self.client_bi_dir_nsock_test_args = ["-N", "1000", "-B", "-X",
- # OUCH! Host Stack Bug?
- # "-I", "2",
- self.loop0.local_ip4,
- self.server_port]
+ self.client_bi_dir_nsock_timeout = 20
+ self.client_bi_dir_nsock_test_args = ["-N", "1000", "-B", "-X",
+ # OUCH! Host Stack Bug?
+ # Only fails when running
+ # 'make test TEST_JOBS=auto'
+ # or TEST_JOBS > 1
+ # "-I", "2",
+ self.loop0.local_ip4,
+ self.server_port]
def tearDown(self):
self.thru_host_stack_tear_down()