app: add some tests
authorIntel <intel.com>
Mon, 3 Jun 2013 00:00:00 +0000 (00:00 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 17 Sep 2013 12:16:08 +0000 (14:16 +0200)
Signed-off-by: Intel
app/test/Makefile
app/test/autotest_data.py
app/test/commands.c
app/test/test.h
app/test/test_common.c [new file with mode: 0644]

index 44a0255..94c86e3 100755 (executable)
@@ -92,6 +92,7 @@ SRCS-$(CONFIG_RTE_APP_TEST) += test_kni.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_pmac_pm.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_pmac_acl.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_power.c
+SRCS-$(CONFIG_RTE_APP_TEST) += test_common.c
 
 CFLAGS += -O3
 CFLAGS += $(WERROR_FLAGS)
index a6847ae..a322ce7 100755 (executable)
@@ -70,7 +70,7 @@ parallel_test_group_list = [
                 "Command" :    "debug_autotest",
                 "Func" :       default_autotest,
                 "Report" :     None,
-               },
+               },      
                {
                 "Name" :       "Errno autotest",
                 "Command" :    "errno_autotest",
@@ -83,6 +83,12 @@ parallel_test_group_list = [
                 "Func" :       default_autotest,
                 "Report" :     None,
                },
+               {
+                "Name" :       "Common autotest",
+                "Command" :    "common_autotest",
+                "Func" :       default_autotest,
+                "Report" :     None,
+               },      
                {
                 "Name" :       "Dump log history",
                 "Command" :    "dump_log_history",
index a9cb545..096b978 100755 (executable)
@@ -181,6 +181,8 @@ static void cmd_autotest_parsed(void *parsed_result,
                ret |= test_pmac_acl();
        if (all || !strcmp(res->autotest, "power_autotest"))
                ret |= test_power();
+       if (all || !strcmp(res->autotest, "common_autotest"))
+               ret |= test_common();
 
        if (ret == 0)
                printf("Test OK\n");
@@ -212,7 +214,7 @@ cmdline_parse_token_string_t cmd_autotest_autotest =
                        "red_autotest#meter_autotest#sched_autotest#"
                        "memcpy_perf_autotest#kni_autotest#"
                        "pm_autotest#acl_autotest#power_autotest#"
-                       "all_autotests");
+                       "common_autotest#all_autotests");
 
 cmdline_parse_inst_t cmd_autotest = {
        .f = cmd_autotest_parsed,  /* function to call */
index a2a45ad..b991ce5 100755 (executable)
@@ -91,6 +91,7 @@ int test_pmac_pm(void);
 int test_pmac_acl(void);
 int test_kni(void);
 int test_power(void);
+int test_common(void);
 
 int test_pci_run;
 
diff --git a/app/test/test_common.c b/app/test/test_common.c
new file mode 100644 (file)
index 0000000..a5fab84
--- /dev/null
@@ -0,0 +1,173 @@
+/*-
+ *   BSD LICENSE
+ * 
+ *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
+ *   All rights reserved.
+ * 
+ *   Redistribution and use in source and binary forms, with or without 
+ *   modification, are permitted provided that the following conditions 
+ *   are met:
+ * 
+ *     * Redistributions of source code must retain the above copyright 
+ *       notice, this list of conditions and the following disclaimer.
+ *     * Redistributions in binary form must reproduce the above copyright 
+ *       notice, this list of conditions and the following disclaimer in 
+ *       the documentation and/or other materials provided with the 
+ *       distribution.
+ *     * Neither the name of Intel Corporation nor the names of its 
+ *       contributors may be used to endorse or promote products derived 
+ *       from this software without specific prior written permission.
+ * 
+ *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 
+ *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
+ *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 
+ *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 
+ *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 
+ *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 
+ *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
+ *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 
+ *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 
+ *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 
+ *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * 
+ */
+
+#include <stdio.h>
+#include <string.h>
+#include <rte_common.h>
+#include <rte_hexdump.h>
+
+#include <cmdline_parse.h>
+
+#include "test.h"
+
+#define MAX_NUM 1 << 20
+
+#define FAIL(x)\
+       {printf(x "() test failed!\n");\
+       return -1;}
+
+/* this is really a sanity check */
+static int
+test_macros(int __rte_unused unused_parm)
+{
+#define SMALLER 0x1000U
+#define BIGGER 0x2000U
+#define PTR_DIFF BIGGER - SMALLER
+#define FAIL_MACRO(x)\
+       {printf(#x "() test failed!\n");\
+       return -1;}
+
+       uintptr_t unused = 0;
+
+       RTE_SET_USED(unused);
+
+       if (RTE_PTR_ADD(SMALLER, PTR_DIFF) != BIGGER)
+               FAIL_MACRO(RTE_PTR_ADD);
+       if (RTE_PTR_SUB(BIGGER, PTR_DIFF) != SMALLER)
+               FAIL_MACRO(RTE_PTR_SUB);
+       if (RTE_PTR_DIFF(BIGGER, SMALLER) != PTR_DIFF)
+               FAIL_MACRO(RTE_PTR_DIFF);
+       if (RTE_MAX(SMALLER, BIGGER) != BIGGER)
+               FAIL_MACRO(RTE_MAX);
+       if (RTE_MIN(SMALLER, BIGGER) != SMALLER)
+               FAIL_MACRO(RTE_MIN);
+
+       if (strncmp(RTE_STR(test), "test", sizeof("test")))
+               FAIL_MACRO(RTE_STR);
+
+       return 0;
+}
+
+static int
+test_misc(void)
+{
+       char memdump[] = "memdump_test";
+       if (rte_bsf32(129))
+               FAIL("rte_bsf32");
+
+       rte_memdump("test", memdump, sizeof(memdump));
+       rte_hexdump("test", memdump, sizeof(memdump));
+
+       rte_pause();
+
+       return 0;
+}
+
+static int
+test_align(void)
+{
+#define FAIL_ALIGN(x, i, p)\
+       {printf(x "() test failed: %u %u\n", i, p);\
+       return -1;}
+#define ERROR_FLOOR(res, i, pow) \
+               (res % pow) ||                                          /* check if not aligned */ \
+               ((res / pow) != (i / pow))              /* check if correct alignment */
+#define ERROR_CEIL(res, i, pow) \
+               (res % pow) ||                                          /* check if not aligned */ \
+                       ((i % pow) == 0 ?                               /* check if ceiling is invoked */ \
+                       val / pow != i / pow :                  /* if aligned */ \
+                       val / pow != (i / pow) + 1)             /* if not aligned, hence +1 */
+
+       uint32_t i, p, val;
+
+       for (i = 1, p = 1; i <= MAX_NUM; i ++) {
+               if (rte_align32pow2(i) != p)
+                       FAIL_ALIGN("rte_align32pow2", i, p);
+               if (i == p)
+                       p <<= 1;
+       }
+
+       for (p = 2; p <= MAX_NUM; p <<= 1) {
+
+               if (!rte_is_power_of_2(p))
+                       FAIL("rte_is_power_of_2");
+
+               for (i = 1; i <= MAX_NUM; i++) {
+                       /* align floor */
+                       if (rte_align_floor_int((uintptr_t)i, p) % p)
+                               FAIL_ALIGN("rte_align_floor_int", i, p);
+
+                       val = RTE_PTR_ALIGN_FLOOR((uintptr_t) i, p);
+                       if (ERROR_FLOOR(val, i, p))
+                               FAIL_ALIGN("RTE_PTR_ALIGN_FLOOR", i, p);
+
+                       val = RTE_ALIGN_FLOOR(i, p);
+                       if (ERROR_FLOOR(val, i, p))
+                               FAIL_ALIGN("RTE_ALIGN_FLOOR", i, p);
+
+                       /* align ceiling */
+                       val = RTE_PTR_ALIGN((uintptr_t) i, p);
+                       if (ERROR_CEIL(val, i, p))
+                               FAIL_ALIGN("RTE_PTR_ALIGN", i, p);
+
+                       val = RTE_ALIGN(i, p);
+                       if (ERROR_CEIL(val, i, p))
+                               FAIL_ALIGN("RTE_ALIGN", i, p);
+
+                       val = RTE_ALIGN_CEIL(i, p);
+                       if (ERROR_CEIL(val, i, p))
+                               FAIL_ALIGN("RTE_ALIGN_CEIL", i, p);
+
+                       val = RTE_PTR_ALIGN_CEIL((uintptr_t)i, p);
+                       if (ERROR_CEIL(val, i, p))
+                               FAIL_ALIGN("RTE_PTR_ALIGN_CEIL", i, p);
+
+                       /* by this point we know that val is aligned to p */
+                       if (!rte_is_aligned((void*)(uintptr_t) val, p))
+                               FAIL("rte_is_aligned");
+               }
+       }
+       return 0;
+}
+
+int
+test_common(void)
+{
+       int ret = 0;
+       ret |= test_align();
+       ret |= test_macros(0);
+       ret |= test_misc();
+
+       return ret;
+}