[PATCH v1 02/11] test/bbdev: update python script parameters

Maxime Coquelin maxime.coquelin at redhat.com
Tue Oct 17 21:07:52 CEST 2023



On 9/29/23 20:13, Hernan Vargas wrote:
> Update the timeout argument and default values.
> Update EAL help message and default value.
> Add iter_max and snr arguments.
> 
> Signed-off-by: Hernan Vargas <hernan.vargas at intel.com>
> ---
>   app/test-bbdev/test-bbdev.py     | 22 ++++++++++++++++++----
>   app/test-bbdev/test_bbdev_perf.c |  2 +-
>   2 files changed, 19 insertions(+), 5 deletions(-)
> 
> diff --git a/app/test-bbdev/test-bbdev.py b/app/test-bbdev/test-bbdev.py
> index 9cdb4659724d..8d0145076e4d 100755
> --- a/app/test-bbdev/test-bbdev.py
> +++ b/app/test-bbdev/test-bbdev.py
> @@ -25,12 +25,12 @@ def kill(process):
>                       help="specifies path to the bbdev test app",
>                       default=dpdk_path + "/" + dpdk_target + "/app/dpdk-test-bbdev")
>   parser.add_argument("-e", "--eal-params",
> -                    help="EAL arguments which are passed to the test app",
> -                    default="--vdev=baseband_null0")
> -parser.add_argument("-t", "--timeout",
> +                    help="EAL arguments which must be passed to the test app",
> +                    default="--vdev=baseband_null0 -a00:00.0")
> +parser.add_argument("-T", "--timeout",
>                       type=int,
>                       help="Timeout in seconds",
> -                    default=300)
> +                    default=600)
>   parser.add_argument("-c", "--test-cases",
>                       nargs="+",
>                       help="Defines test cases to run. Run all if not specified")
> @@ -48,6 +48,14 @@ def kill(process):
>                       type=int,
>                       help="Operations enqueue/dequeue burst size.",
>                       default=[32])
> +parser.add_argument("-s", "--snr",
> +                    type=int,
> +                    help="SNR in dB for BLER tests",
> +                    default=0)
> +parser.add_argument("-t", "--iter-max",

We shouldn't change parameters meaning, it will silently break existing
scripts making use of it.

> +                    type=int,
> +                    help="Max iterations",
> +                    default=6)
>   parser.add_argument("-l", "--num-lcores",
>                       type=int,
>                       help="Number of lcores to run.",
> @@ -68,6 +76,12 @@ def kill(process):
>   
>   params.extend(["--"])
>   
> +if args.snr:
> +    params.extend(["-s", str(args.snr)])
> +
> +if args.iter_max:
> +    params.extend(["-t", str(args.iter_max)])
> +
>   if args.num_ops:
>       params.extend(["-n", str(args.num_ops)])
>   
> diff --git a/app/test-bbdev/test_bbdev_perf.c b/app/test-bbdev/test_bbdev_perf.c
> index 276bbf0a2e6d..faea26c10eed 100644
> --- a/app/test-bbdev/test_bbdev_perf.c
> +++ b/app/test-bbdev/test_bbdev_perf.c
> @@ -26,7 +26,7 @@
>   
>   #define MAX_QUEUES RTE_MAX_LCORE
>   #define TEST_REPETITIONS 100
> -#define TIME_OUT_POLL 1e8
> +#define TIME_OUT_POLL 1e9
>   #define WAIT_OFFLOAD_US 1000
>   
>   #ifdef RTE_BASEBAND_FPGA_LTE_FEC



More information about the dev mailing list