tests: "force solo" testcase support
Some of the tests are time-sensitive, and at present require a non-trivial modification in order to run at high concurrency. Without these modifications, they intermittently fail, and require the test retries. Rather than setting them to the extended tests and forgetting about them, put them into a "solo" set, which gets run in a single-threaded mode after the rest of the tests are done. Mark a few of the tests that showed errors during TEST_JOBS=48 as forced-solo. Also, give a better diagnostic if the testcase misses a docstring needed to represent it in the diagnostic outputs. Type: fix Change-Id: I33fe62eb17edc1885bd2c3523892051d52da6546 Signed-off-by: Andrew Yourtchenko <ayourtch@gmail.com>
This commit is contained in:

committed by
Ole Trøan

parent
d135487aff
commit
a3b7c554c6
@ -120,6 +120,10 @@ class TestSessionUnitTests(VppTestCase):
|
||||
class TestSvmFifoUnitTests(VppTestCase):
|
||||
""" SVM Fifo Unit Tests Case """
|
||||
|
||||
@classmethod
|
||||
def force_solo(cls):
|
||||
return True
|
||||
|
||||
@classmethod
|
||||
def setUpClass(cls):
|
||||
super(TestSvmFifoUnitTests, cls).setUpClass()
|
||||
|
Reference in New Issue
Block a user