diff options
author | Klement Sekera <ksekera@cisco.com> | 2021-03-15 16:58:10 +0100 |
---|---|---|
committer | Andrew Yourtchenko <ayourtch@gmail.com> | 2021-03-20 01:14:20 +0000 |
commit | 8d8150262b00435c365a43c8f859584901736aff (patch) | |
tree | c7eace6feab4895d6f40b16a54ef65cc63bebe67 /src/plugins/quic/test | |
parent | 290526e3c72888ac05928ed0a6dddee02f7df650 (diff) |
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 <ksekera@cisco.com>
Diffstat (limited to 'src/plugins/quic/test')
-rw-r--r-- | src/plugins/quic/test/test_quic.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/quic/test/test_quic.py b/src/plugins/quic/test/test_quic.py index d984b99610c..0e4cb2dacca 100644 --- a/src/plugins/quic/test/test_quic.py +++ b/src/plugins/quic/test/test_quic.py @@ -177,7 +177,7 @@ class QUICEchoExtTestCase(QUICTestCase): post_test_sleep = 1 app = "vpp_echo" evt_q_len = 16384 - worker_config = "workers 1" + vpp_worker_count = 1 server_fifo_size = "1M" client_fifo_size = "4M" extra_vpp_punt_config = ["session", "{", |