[LTP] [PATCH v2 6/8] net/virt_lib.sh: Remove possibility to pass custom sizes
Alexey Kodanev
alexey.kodanev@oracle.com
Wed Jun 27 13:35:54 CEST 2018
On 22.06.2018 18:10, Petr Vorel wrote:
> to virt_netperf_msg_sizes(). Custom sizes haven't been used yet.
>
> This is a preparation for next commit, which (while rewriting tests into
> new shell API) start using virt_netperf_msg_sizes() as test functions
> directly (as in new API it gets $1 for test number since 4bcc0addf.
>
> TST_TESTFUNC="virt_netperf_msg_sizes"
>
> instead of wrapping it into function:
>
> TST_TESTFUNC="do_test"
> do_test()
> {
> virt_netperf_msg_sizes
> }
>
> Actually the best would be to replace sizes array in function with
> TST_TEST_DATA, but that would require split tests cases, which use
> virt_netperf_msg_sizes() with other functions, which are without arrays
> (e.g. virt_compare_netperf() and virt_minimize_timeout() in vlan03.sh,
> geneve01.sh abd vxlan03.sh)
>
Do you mean using TST_CNT for different options (e.g. in vxlan03.sh " ,gbp"),
and TST_TEST_DATA for sizes?
> Signed-off-by: Petr Vorel <pvorel@suse.cz>
> ---
> If you don't like it, I'll just use version with TST_TESTFUNC="do_test"
> in next commit. Using TST_TEST_DATA is TODO (if you're interested, I'd
> do it after having done this patch).
> ---
> testcases/network/virt/virt_lib.sh | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/testcases/network/virt/virt_lib.sh b/testcases/network/virt/virt_lib.sh
> index eaec33d8f..f92c38fd2 100644
> --- a/testcases/network/virt/virt_lib.sh
> +++ b/testcases/network/virt/virt_lib.sh
> @@ -328,7 +328,7 @@ virt_macsec_setup()
>
> virt_netperf_msg_sizes()
> {
> - local sizes="${@:-100 1000 2000 10000}"
> + local sizes="100 1000 2000 10000"
> client_requests=20000
>
Just noted, we don't need "client_requests" variable anymore...
> for s in $sizes; do
>
More information about the ltp
mailing list