[v2] test: reduce test time for hash multiwriter ut

Message ID 1541160066-26915-1-git-send-email-jananeex.m.parthasarathy@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series [v2] test: reduce test time for hash multiwriter ut |

Checks

Context Check Description
ci/Intel-compilation success Compilation OK
ci/checkpatch success coding style OK

Commit Message

Jananee Parthasarathy Nov. 2, 2018, 12:01 p.m. UTC
  From: Naga Suresh Somarowthu <naga.sureshx.somarowthu@intel.com>

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 <naga.sureshx.somarowthu@intel.com>
Acked-by: Herakliusz Lipiec <herakliusz.lipiec@intel.com>
---
v2: updated total insertions to achieve greater table utilization
---
 test/test/test_hash_multiwriter.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Thomas Monjalon Nov. 6, 2018, 1:45 a.m. UTC | #1
02/11/2018 13:01, Jananee Parthasarathy:
> From: Naga Suresh Somarowthu <naga.sureshx.somarowthu@intel.com>
> 
> 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 <naga.sureshx.somarowthu@intel.com>
> Acked-by: Herakliusz Lipiec <herakliusz.lipiec@intel.com>

Applied, thanks
  

Patch

diff --git a/test/test/test_hash_multiwriter.c b/test/test/test_hash_multiwriter.c
index 6a3eb10bd..fc2593a0d 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.5*1024*1024;
 uint32_t rounded_nb_total_tsx_insertion;
 
 static rte_atomic64_t gcycles;