tile: fix build
[dpdk.git] / app / test / test_cmdline.c
index 77475c4..38c7256 100644 (file)
 #include "test.h"
 #include "test_cmdline.h"
 
-int
+static int
 test_cmdline(void)
 {
-#ifdef CONFIG_RTE_LIBRTE_CMDLINE
        printf("Testind parsing ethernet addresses...\n");
        if (test_parse_etheraddr_valid() < 0)
                return -1;
@@ -87,9 +86,7 @@ test_cmdline(void)
        printf("Testing library functions...\n");
        if (test_cmdline_lib() < 0)
                return -1;
-#else
-       printf("The cmdline library is not included in this build\n");
-#endif
        return 0;
 }
 
+REGISTER_TEST_COMMAND(cmdline_autotest, test_cmdline);