>-----Original Message----- >From: dev [mailto:[email protected]] On Behalf Of Jananee Parthasarathy >Sent: Wednesday, September 26, 2018 11:41 PM >To: [email protected] >Cc: Richardson, Bruce <[email protected]>; De Lara Guarch, Pablo ><[email protected]>; Pattan, Reshma ><[email protected]>; Somarowthu, Naga SureshX ><[email protected]> >Subject: [dpdk-dev] [PATCH] test: reduce test time for hash multiwriter ut > >From: Naga Suresh Somarowthu <[email protected]> > >Reduced test duration for hash_multiwriter_autotest. >Number of entries and total insertions are reduced >such that the duration is less than 10 seconds. > >Signed-off-by: Naga Suresh Somarowthu <[email protected]> >--- > test/test/test_hash_multiwriter.c | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > >diff --git a/test/test/test_hash_multiwriter.c >b/test/test/test_hash_multiwriter.c >index 6a3eb10bd..04b7c18ff 100644 >--- a/test/test/test_hash_multiwriter.c >+++ b/test/test/test_hash_multiwriter.c >@@ -38,8 +38,8 @@ struct { > struct rte_hash *h; > } tbl_multiwriter_test_params; > >-const uint32_t nb_entries = 16*1024*1024; >-const uint32_t nb_total_tsx_insertion = 15*1024*1024; >+const uint32_t nb_entries = 5*1024*1024; >+const uint32_t nb_total_tsx_insertion = 4*1024*1024;
[Wang, Yipeng] Maybe use 4.5*1024*1024 for nb_total_tsx_insertion to achieve 90% table utilization, which may exercise more core cases.

