[dpdk-dev] [PATCH 1/1] test_table: fixed failing unit tests checking offset

Maciej Gajdzica maciejx.t.gajdzica at intel.com
Wed Aug 12 14:41:27 CEST 2015


In commit: 1129992baa61d72c5 checking for offset alignment was removed.
Unit tests wasn't updated to reflect that change. This patch changes
checks with unaligned offsets to make tests pass.

Signed-off-by: Maciej Gajdzica <maciejx.t.gajdzica at intel.com>
---
 app/test/test_table_tables.c |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app/test/test_table_tables.c b/app/test/test_table_tables.c
index 14add77..88bebf8 100644
--- a/app/test/test_table_tables.c
+++ b/app/test/test_table_tables.c
@@ -226,7 +226,7 @@ test_table_array(void)
 	array_params.offset = 1;
 
 	table = rte_table_array_ops.f_create(&array_params, 0, 1);
-	if (table != NULL)
+	if (table == NULL)
 		return -4;
 
 	array_params.offset = 32;
@@ -652,14 +652,14 @@ test_table_hash_lru_generic(struct rte_table_ops *ops)
 	hash_params.signature_offset = 1;
 
 	table = ops->f_create(&hash_params, 0, 1);
-	if (table != NULL)
+	if (table == NULL)
 		return -2;
 
 	hash_params.signature_offset = 0;
 	hash_params.key_offset = 1;
 
 	table = ops->f_create(&hash_params, 0, 1);
-	if (table != NULL)
+	if (table == NULL)
 		return -3;
 
 	hash_params.key_offset = 32;
@@ -765,14 +765,14 @@ test_table_hash_ext_generic(struct rte_table_ops *ops)
 	hash_params.n_entries_ext = 1 << 4;
 	hash_params.signature_offset = 1;
 	table = ops->f_create(&hash_params, 0, 1);
-	if (table != NULL)
+	if (table == NULL)
 		return -2;
 
 	hash_params.signature_offset = 0;
 	hash_params.key_offset = 1;
 
 	table = ops->f_create(&hash_params, 0, 1);
-	if (table != NULL)
+	if (table == NULL)
 		return -3;
 
 	hash_params.key_offset = 32;
-- 
1.7.9.5



More information about the dev mailing list