From 24314713446b6411cedce4329ab5ebfd6da678a2 Mon Sep 17 00:00:00 2001 From: Pierrick Louin Date: Fri, 2 Aug 2019 15:16:33 +0200 Subject: NFVBENCH-155 Add options to disable extra stats, latency stats and latency streams Change-Id: I9af56bf1b618a072adbc92b43e65e10b274d4f17 Signed-off-by: fmenguy --- test/test_chains.py | 3 +++ test/test_nfvbench.py | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) (limited to 'test') diff --git a/test/test_chains.py b/test/test_chains.py index 5fd1ce6..741bee7 100644 --- a/test/test_chains.py +++ b/test/test_chains.py @@ -70,6 +70,9 @@ def _get_chain_config(sc=ChainType.PVP, scc=1, shared_net=True, rate='1Mpps'): config.duration_sec = 2 config.interval_sec = 1 config.openrc_file = "dummy.rc" + config.no_flow_stats = False + config.no_latency_stats = False + config.no_latency_streams = False return config def test_chain_runner_ext_no_openstack(): diff --git a/test/test_nfvbench.py b/test/test_nfvbench.py index 04e3191..7a0a9ed 100644 --- a/test/test_nfvbench.py +++ b/test/test_nfvbench.py @@ -332,7 +332,10 @@ def _get_dummy_tg_config(chain_type, rate, scc=1, fc=10, step_ip='0.0.0.1', 'mbuf_factor': None, 'disable_hdrh': None, 'mbuf_64': None, - 'service_mode': False + 'service_mode': False, + 'no_flow_stats': False, + 'no_latency_stats': False, + 'no_latency_streams': False }) -- cgit 1.2.3-korg