From 8d8150262b00435c365a43c8f859584901736aff Mon Sep 17 00:00:00 2001 From: Klement Sekera Date: Mon, 15 Mar 2021 16:58:10 +0100 Subject: tests: add support for worker awareness VppTestCase now has vpp_worker_count property set to number of workers. This can be overriden by child classes. Also overriden by VPP_WORKER_CONFIG variable for legacy reasons. Type: improvement Change-Id: Ic328bacb9003ddf9e92815767653bd362aa7f086 Signed-off-by: Klement Sekera --- test/test_vlib.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/test_vlib.py') diff --git a/test/test_vlib.py b/test/test_vlib.py index 89ccb396ecd..64218eabbb3 100644 --- a/test/test_vlib.py +++ b/test/test_vlib.py @@ -11,7 +11,7 @@ from vpp_ip_route import VppIpTable, VppIpRoute, VppRoutePath class TestVlib(VppTestCase): """ Vlib Unit Test Cases """ - worker_config = "workers 1" + vpp_worker_count = 1 @classmethod def setUpClass(cls): -- cgit 1.2.3-korg