[V1] tests/virtio_pvp_regression: modify pktgen traffic options parameter
Checks
Context |
Check |
Description |
ci/Intel-dts-format-test |
success
|
Testing OK
|
ci/Intel-dts-pylama-test |
success
|
Testing OK
|
ci/Intel-dts-suite-test |
warning
|
SKIPPED
|
Commit Message
Modify pktgen traffice options parameter `trans_options = {"delay": 5, "duration": 30}`
to get stable throughput value.
Signed-off-by: Wei Ling <weix.ling@intel.com>
---
tests/TestSuite_virtio_pvp_regression.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Comments
On Wed, 29 Mar 2023 09:48:35 +0800, Wei Ling <weix.ling@intel.com> wrote:
> Modify pktgen traffice options parameter `trans_options = {"delay": 5, "duration": 30}`
> to get stable throughput value.
>
> Signed-off-by: Wei Ling <weix.ling@intel.com>
Applied, thanks
@@ -391,7 +391,7 @@ class TestVirtioPVPRegression(TestCase):
tgenInput, 100, fields_config, self.tester.pktgen
)
# set traffic option
- traffic_opt = {"delay": 5, "duration": 20}
+ traffic_opt = {"delay": 5, "duration": 30}
_, pps = self.tester.pktgen.measure_throughput(
stream_ids=streams, options=traffic_opt
)