test: use common macro RTE_DIM
authorPavan Nikhilesh <pbhagavatula@marvell.com>
Thu, 17 Oct 2019 12:09:59 +0000 (17:39 +0530)
committerDavid Marchand <david.marchand@redhat.com>
Sun, 27 Oct 2019 13:40:55 +0000 (14:40 +0100)
Use RTE_DIM instead of re-defining ARRAY_SIZE.

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
Acked-by: Gage Eads <gage.eads@intel.com>
app/test/test_cryptodev_asym.c
app/test/test_metrics.c
app/test/test_stack_perf.c

index e49ab9d..69df293 100644 (file)
 #define TEST_NUM_BUFS 10
 #define TEST_NUM_SESSIONS 4
 
-#ifndef ARRAY_SIZE
-#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
-#endif
-
 #ifndef TEST_DATA_SIZE
        #define TEST_DATA_SIZE 4096
 #endif
@@ -580,7 +576,7 @@ load_test_vectors(void)
 {
        uint32_t i = 0, v_size = 0;
        /* Load MODEX vector*/
-       v_size = ARRAY_SIZE(modex_test_case);
+       v_size = RTE_DIM(modex_test_case);
        for (i = 0; i < v_size; i++) {
                if (test_vector.size >= (TEST_VECTOR_SIZE)) {
                        RTE_LOG(DEBUG, USER1,
@@ -591,7 +587,7 @@ load_test_vectors(void)
                test_vector.size++;
        }
        /* Load MODINV vector*/
-       v_size = ARRAY_SIZE(modinv_test_case);
+       v_size = RTE_DIM(modinv_test_case);
        for (i = 0; i < v_size; i++) {
                if (test_vector.size >= (TEST_VECTOR_SIZE)) {
                        RTE_LOG(DEBUG, USER1,
@@ -602,7 +598,7 @@ load_test_vectors(void)
                test_vector.size++;
        }
        /* Load RSA vector*/
-       v_size = ARRAY_SIZE(rsa_test_case_list);
+       v_size = RTE_DIM(rsa_test_case_list);
        for (i = 0; i < v_size; i++) {
                if (test_vector.size >= (TEST_VECTOR_SIZE)) {
                        RTE_LOG(DEBUG, USER1,
index 78b3936..e736019 100644 (file)
@@ -12,7 +12,6 @@
 
 #include "test.h"
 
-#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
 #define        REG_METRIC_COUNT        6
 #define        METRIC_LESSER_COUNT     3
 #define        KEY     1
@@ -106,7 +105,7 @@ test_metrics_reg_names(void)
                };
 
        /* Success Test: valid array and count size */
-       err = rte_metrics_reg_names(&mnames[0], ARRAY_SIZE(mnames));
+       err = rte_metrics_reg_names(&mnames[0], RTE_DIM(mnames));
        TEST_ASSERT(err >= 0, "%s, %d", __func__, __LINE__);
 
        return TEST_SUCCESS;
@@ -167,20 +166,20 @@ test_metrics_update_values(void)
 
        /* Failed Test: Invalid count size */
        err = rte_metrics_update_values(RTE_METRICS_GLOBAL,
-                        KEY, &value[0], ARRAY_SIZE(value));
+                        KEY, &value[0], RTE_DIM(value));
        TEST_ASSERT(err < 0, "%s, %d", __func__, __LINE__);
 
        /* Failed Test: Invalid port_id(lower value) and valid data */
-       err = rte_metrics_update_values(-2, KEY, &value[0], ARRAY_SIZE(value));
+       err = rte_metrics_update_values(-2, KEY, &value[0], RTE_DIM(value));
        TEST_ASSERT(err == -EINVAL, "%s, %d", __func__, __LINE__);
 
        /* Failed Test: Invalid port_id(higher value) and valid data */
-       err = rte_metrics_update_values(39, 1, &value[0], ARRAY_SIZE(value));
+       err = rte_metrics_update_values(39, 1, &value[0], RTE_DIM(value));
        TEST_ASSERT(err == -EINVAL, "%s, %d", __func__, __LINE__);
 
        /* Failed Test: Invalid array */
        err = rte_metrics_update_values(RTE_METRICS_GLOBAL,
-                        KEY, NULL, ARRAY_SIZE(value));
+                        KEY, NULL, RTE_DIM(value));
        TEST_ASSERT(err == -EINVAL, "%s, %d", __func__, __LINE__);
 
        return TEST_SUCCESS;
index 70561fe..3ab7267 100644 (file)
@@ -18,8 +18,6 @@
 #define MAX_BURST 32
 #define STACK_SIZE (RTE_MAX_LCORE * MAX_BURST)
 
-#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
-
 /*
  * Push/pop bulk sizes, marked volatile so they aren't treated as compile-time
  * constants.
@@ -176,7 +174,7 @@ run_on_core_pair(struct lcore_pair *cores, struct rte_stack *s,
        struct thread_args args[2];
        unsigned int i;
 
-       for (i = 0; i < ARRAY_SIZE(bulk_sizes); i++) {
+       for (i = 0; i < RTE_DIM(bulk_sizes); i++) {
                rte_atomic32_set(&lcore_barrier, 2);
 
                args[0].sz = args[1].sz = bulk_sizes[i];
@@ -205,7 +203,7 @@ run_on_n_cores(struct rte_stack *s, lcore_function_t fn, int n)
        struct thread_args args[RTE_MAX_LCORE];
        unsigned int i;
 
-       for (i = 0; i < ARRAY_SIZE(bulk_sizes); i++) {
+       for (i = 0; i < RTE_DIM(bulk_sizes); i++) {
                unsigned int lcore_id;
                int cnt = 0;
                double avg;
@@ -280,7 +278,7 @@ test_bulk_push_pop(struct rte_stack *s)
        void *objs[MAX_BURST];
        unsigned int sz, i;
 
-       for (sz = 0; sz < ARRAY_SIZE(bulk_sizes); sz++) {
+       for (sz = 0; sz < RTE_DIM(bulk_sizes); sz++) {
                uint64_t start = rte_rdtsc();
 
                for (i = 0; i < iterations; i++) {