DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH 1/1] test/hash: fix error log output
@ 2023-09-12 11:52 Min Zhou
  2023-09-13  7:30 ` Stephen Hemminger
  2023-11-23  0:44 ` Thomas Monjalon
  0 siblings, 2 replies; 4+ messages in thread
From: Min Zhou @ 2023-09-12 11:52 UTC (permalink / raw)
  To: yipeng1.wang, sameh.gobriel, bruce.richardson,
	vladimir.medvedkin, pablo.de.lara.guarch, zhoumin
  Cc: dev

Caught while running meson test:
hash creation failedTest Failed

Add missing \n.

Fixes: 0eb3726ebcf ("test/hash: add test for read/write concurrency")

Signed-off-by: Min Zhou <zhoumin@loongson.cn>
---
 app/test/test_hash_readwrite.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app/test/test_hash_readwrite.c b/app/test/test_hash_readwrite.c
index 74ca13912f..4997a01249 100644
--- a/app/test/test_hash_readwrite.c
+++ b/app/test/test_hash_readwrite.c
@@ -162,7 +162,7 @@ init_params(int use_ext, int use_htm, int rw_lf, int use_jhash)
 
 	handle = rte_hash_create(&hash_params);
 	if (handle == NULL) {
-		printf("hash creation failed");
+		printf("hash creation failed\n");
 		return -1;
 	}
 
-- 
2.39.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-11-23  0:44 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-12 11:52 [PATCH 1/1] test/hash: fix error log output Min Zhou
2023-09-13  7:30 ` Stephen Hemminger
2023-09-13  9:23   ` zhoumin
2023-11-23  0:44 ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).