app/test: fix build switches to enable cmdline tests
authorThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 27 Jun 2014 09:21:11 +0000 (11:21 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Tue, 1 Jul 2014 14:25:36 +0000 (16:25 +0200)
There were 2 typos since these commits (in 1.6.0 releases):
21a7f4e264 fix build without librte_cmdline
cac6d08c8b replace --use-device option by --pci-whitelist and --vdev
In makefiles, the build options are prefixed with CONFIG_RTE_
but in .c file, it is only RTE_.

These typos were disabling cmdline unit tests and test of "--vdev eth_ring" option.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>
app/test/test_cmdline.c
app/test/test_eal_flags.c

index 77475c46d61cccb372f992c545826d101571ca9f..10a3f774aead25e9cfbb19f1e9b73b5c5cbb418f 100644 (file)
@@ -39,7 +39,7 @@
 int
 test_cmdline(void)
 {
-#ifdef CONFIG_RTE_LIBRTE_CMDLINE
+#ifdef RTE_LIBRTE_CMDLINE
        printf("Testind parsing ethernet addresses...\n");
        if (test_parse_etheraddr_valid() < 0)
                return -1;
index a862654c8d9222c9a5ce02d8ec2caff81d7a56b6..1b80b8054bf4b5103583597407f616b46a2275c4 100644 (file)
@@ -317,7 +317,7 @@ test_whitelist_flag(void)
        const char *wlval3[] = {prgname, prefix, mp_flag, "-n", "1", "-c", "1",
                        pci_whitelist, "09:0B.3,type=test",
                        pci_whitelist, "08:00.1,type=normal",
-#ifdef CONFIG_RTE_LIBRTE_PMD_RING
+#ifdef RTE_LIBRTE_PMD_RING
                        vdev, "eth_ring,arg=test",
 #endif
        };