]> git.droids-corp.org - dpdk.git/commitdiff
app/test: fix build without librte_cmdline
authorThomas Monjalon <thomas.monjalon@6wind.com>
Thu, 14 Nov 2013 21:26:30 +0000 (22:26 +0100)
committerDavid Marchand <david.marchand@6wind.com>
Wed, 26 Feb 2014 10:07:29 +0000 (11:07 +0100)
Some features are not available if LIBRTE_CMDLINE is disabled:
- interactive commands
- cmdline tests
Remove also cmdline_parse includes which are not needed.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
Acked-by: Olivier Matz <olivier.matz@6wind.com>
47 files changed:
app/test/Makefile
app/test/test.c
app/test/test.h
app/test/test_acl.c
app/test/test_alarm.c
app/test/test_atomic.c
app/test/test_byteorder.c
app/test/test_cmdline.c
app/test/test_common.c
app/test/test_cpuflags.c
app/test/test_cycles.c
app/test/test_debug.c
app/test/test_eal_flags.c
app/test/test_eal_fs.c
app/test/test_errno.c
app/test/test_func_reentrancy.c
app/test/test_hash.c
app/test/test_hash_perf.c
app/test/test_interrupts.c
app/test/test_kni.c
app/test/test_logs.c
app/test/test_lpm.c
app/test/test_lpm6.c
app/test/test_malloc.c
app/test/test_mbuf.c
app/test/test_memcpy.c
app/test/test_memcpy_perf.c
app/test/test_memory.c
app/test/test_mempool.c
app/test/test_mempool_perf.c
app/test/test_memzone.c
app/test/test_meter.c
app/test/test_mp_secondary.c
app/test/test_pci.c
app/test/test_per_lcore.c
app/test/test_power.c
app/test/test_prefetch.c
app/test/test_red.c
app/test/test_ring.c
app/test/test_ring_perf.c
app/test/test_rwlock.c
app/test/test_sched.c
app/test/test_spinlock.c
app/test/test_string_fns.c
app/test/test_tailq.c
app/test/test_timer.c
app/test/test_version.c

index 55c391bbe9eb577e1380f00f082baae9c8d8d492..28f1f62ed7e66163237243415bf018cacd2de0d0 100644 (file)
@@ -39,7 +39,7 @@ APP = test
 #
 # all sources are stored in SRCS-y
 #
-SRCS-$(CONFIG_RTE_APP_TEST) := commands.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) := commands.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_pci.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_prefetch.c
@@ -78,13 +78,13 @@ SRCS-$(CONFIG_RTE_APP_TEST) += test_version.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_eal_fs.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_func_reentrancy.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_num.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_etheraddr.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_portlist.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_ipaddr.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_cirbuf.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_string.c
-SRCS-$(CONFIG_RTE_APP_TEST) += test_cmdline_lib.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_num.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_etheraddr.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_portlist.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_ipaddr.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_cirbuf.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_string.c
+SRCS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test_cmdline_lib.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_red.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_sched.c
 SRCS-$(CONFIG_RTE_APP_TEST) += test_meter.c
index 59fcc9d245635be4a9e170b3a6b76007d28c91af..079d5c1d80d498c465ef79f6879b151ff0847279 100644 (file)
 #include <ctype.h>
 #include <sys/queue.h>
 
+#ifdef RTE_LIBRTE_CMDLINE
 #include <cmdline_rdline.h>
 #include <cmdline_parse.h>
 #include <cmdline_socket.h>
 #include <cmdline.h>
+extern cmdline_parse_ctx_t main_ctx[];
+#endif
 
 #include <rte_memory.h>
 #include <rte_memzone.h>
@@ -109,7 +112,9 @@ do_recursive_call(void)
 int
 main(int argc, char **argv)
 {
+#ifdef RTE_LIBRTE_CMDLINE
        struct cmdline *cl;
+#endif
        int ret;
 
        ret = rte_eal_init(argc, argv);
@@ -136,13 +141,14 @@ main(int argc, char **argv)
                                "HPET is not enabled, using TSC as default timer\n");
 
 
-
+#ifdef RTE_LIBRTE_CMDLINE
        cl = cmdline_stdin_new(main_ctx, "RTE>>");
        if (cl == NULL) {
                return -1;
        }
        cmdline_interact(cl);
        cmdline_stdin_exit(cl);
+#endif
 
        return 0;
 }
index 0e029009b14b0b909ac4854149386b6d868ef5af..bc001b9d7aabfc99516b5d22eff011c403e4df69 100644 (file)
 
 extern const char *prgname;
 
-#include <cmdline_parse.h>
-
-extern cmdline_parse_ctx_t main_ctx[];
-
 int main(int argc, char **argv);
 
 int test_pci(void);
index 2c84329f362a982dc1d76bb08e46d3ba4cc0628f..790cdf3da894712e5b9763f604f069a51db6b80e 100644 (file)
@@ -34,8 +34,6 @@
 #include <string.h>
 #include <errno.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifdef RTE_LIBRTE_ACL
index 06c68f4001d47b9348570bfb57f5d88c9ddf56d6..a2462ae5dd6f91ac0206cf5777a312decff6fff2 100644 (file)
@@ -34,8 +34,6 @@
 #include <stdio.h>
 #include <stdint.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_cycles.h>
 #include <rte_interrupts.h>
index 2d93a5f0f2c6725af56055ca6063f12da479b62f..896a28b6ff4438b1612d7bd20d32ca27b79abb5a 100644 (file)
@@ -36,8 +36,6 @@
 #include <unistd.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_memory.h>
 #include <rte_memzone.h>
 #include <rte_per_lcore.h>
index e5d1cd407d0fe5444ca3fbbf2cdcc703f6ef783a..598c5c2c3b84f72601a87527ac1f188ad698c3b1 100644 (file)
@@ -36,8 +36,6 @@
 #include <unistd.h>
 #include <inttypes.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_byteorder.h>
 
 #include "test.h"
index 30366b53225a1d9cde68f3f554e7d0c4602fe62c..3df2d29582177d75ad9cae4554f8b3bd18410839 100644 (file)
 
 #include <stdio.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 #include "test_cmdline.h"
 
 int
 test_cmdline(void)
 {
+#ifdef CONFIG_RTE_LIBRTE_CMDLINE
        printf("Testind parsing ethernet addresses...\n");
        if (test_parse_etheraddr_valid() < 0)
                return -1;
@@ -88,6 +87,9 @@ 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;
 }
 
index 12be1f47320fe373f2ebe0764c47721fff91f55f..3c9408d242aa3d50a691116b59eb04c1e27eb859 100644 (file)
@@ -36,8 +36,6 @@
 #include <rte_common.h>
 #include <rte_hexdump.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #define MAX_NUM 1 << 20
index bf5e0f5bff7655f8990dfb95664ac5a15081c1b3..9cfbec6c22856a3eb6bd083aba67deb0d32c210e 100644 (file)
@@ -33,7 +33,6 @@
 
 #include <stdio.h>
 
-#include <cmdline_parse.h>
 #include <errno.h>
 #include <stdint.h>
 #include <rte_cpuflags.h>
index e06aa064d5e270ee619446839a5b5cbf3869e8f6..db8e58de740bf23bbbc2a1a4cd68b5abe4e8257c 100644 (file)
@@ -34,8 +34,6 @@
 #include <stdio.h>
 #include <stdint.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_cycles.h>
 
index 6fc3535f3fc8714de4d045e9750a99b99d884e7a..ae7be52535e5d9818485319ac417cd2d8639d5dd 100644 (file)
@@ -36,8 +36,6 @@
 #include <sys/wait.h>
 #include <unistd.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_debug.h>
 #include <rte_common.h>
 #include <rte_eal.h>
index 0f373ef4b1c2637e8e319c2c54470844d9318849..964a3a9bc477dd853145757f5c181db351a15cf5 100644 (file)
@@ -32,8 +32,6 @@
  */
 #include <stdio.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifndef RTE_EXEC_ENV_BAREMETAL
index 93d8a7fcfd6244f391d0ccfb13db86d162961a79..0a7524df519440c7fcf8692a7ba1b4f60ca86fe9 100644 (file)
@@ -31,8 +31,6 @@
  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 #ifndef RTE_EXEC_ENV_BAREMETAL
 #include <stdio.h>
index 24065e5b0d77b40931c3388ba616e9eedb0c5af9..5ebc8aba9db954faedd8b9284f66f91cc401bc4f 100644 (file)
@@ -40,8 +40,6 @@
 #include <rte_errno.h>
 #include <rte_string_fns.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 int
index c12167bf5367361dee7ce1990acc8cf7f0bf23dd..367050ab7157afcd683fb65b694994392c45be17 100644 (file)
@@ -70,8 +70,6 @@
 
 #include <rte_string_fns.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 typedef int (*case_func_t)(void* arg);
index 07fe60225a6d5b927613a158284257f90580817e..df0afba491c037e5a25bb002692789ff9b268200 100644 (file)
@@ -49,7 +49,6 @@
 #include <rte_eal.h>
 #include <rte_ip.h>
 #include <rte_string_fns.h>
-#include <cmdline_parse.h>
 
 #include "test.h"
 
index f4f291bd9b6dcec07e4d39d7b92f042eda06a194..a4f144b103633a3cc2af1000b88231ef34dc1f10 100644 (file)
@@ -50,7 +50,6 @@
 #include <rte_eal.h>
 #include <rte_ip.h>
 #include <rte_string_fns.h>
-#include <cmdline_parse.h>
 
 #include "test.h"
 
index 322c218d6822aa7d5e2f5757ee2768c0047d1618..4563e2b0e507a1619a4107bd770f447a01b23e6f 100644 (file)
@@ -35,8 +35,6 @@
 #include <stdint.h>
 #include <unistd.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_cycles.h>
 #include <rte_interrupts.h>
index cd87c3c0699dbde4cf061e0765a6359481e94fa9..e0fe44ef35c8e8d44b6d5c492aeda8c69b8fd568 100644 (file)
@@ -37,8 +37,6 @@
 #include <string.h>
 #include <sys/wait.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifdef RTE_LIBRTE_KNI
index 3d8105328c9433315e01e88636ae301a7f8128a2..057cdc6352462f9c44d7b46a778355a06be05a42 100644 (file)
@@ -36,8 +36,6 @@
 #include <stdarg.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_log.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
index a274a11dde0f18db6308c1858fda8d2473e54985..ffed766401422aba4739df026044a59edef6c0e0 100644 (file)
@@ -36,7 +36,6 @@
 #include <stdlib.h>
 #include <errno.h>
 #include <sys/queue.h>
-#include <cmdline_parse.h>
 
 #include <rte_common.h>
 #include <rte_cycles.h>
index 13ca59483f906158e3b8d88748cc863e34595821..151840d1eea42488f59bcef4812af57c5ac6c9cd 100644 (file)
@@ -36,7 +36,6 @@
 #include <string.h>
 #include <errno.h>
 #include <sys/queue.h>
-#include <cmdline_parse.h>
 
 #include <time.h>
 
index e8d26e3bcddebf5cce34009613e9c64a1e74be0c..887774e0790363404d186e686dc79dd8b853d11b 100644 (file)
@@ -39,8 +39,6 @@
 #include <stdlib.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
index 25202a4f634a86d4cf60299fa44602dcf196dae4..f4437340ea4fe1eba05ad79748be35693a1822ea 100644 (file)
@@ -60,8 +60,6 @@
 #include <rte_random.h>
 #include <rte_cycles.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #define MBUF_SIZE               2048
index 75cd09ccd17f33b2e05cfd2384a4a76b60a012b7..50b947890f4e6357a75690bad639b900a95c6841 100644 (file)
@@ -37,7 +37,6 @@
 #include <stdlib.h>
 
 #include <rte_common.h>
-#include <cmdline_parse.h>
 #include <rte_cycles.h>
 #include <rte_random.h>
 #include <rte_malloc.h>
index 9ebaa69292c7ec56b4f5141c901b50fe1c52182d..f665387720dfcc869125ea9ea3f45181876df30d 100644 (file)
@@ -37,7 +37,6 @@
 #include <stdlib.h>
 
 #include <rte_common.h>
-#include <cmdline_parse.h>
 #include <rte_cycles.h>
 #include <rte_random.h>
 #include <rte_malloc.h>
index 164c58b2f3b839a0fc569250a8e7f4c7b808f768..a179fd6af8e2a5986ad35d9814fcd1aafb7892c7 100644 (file)
@@ -34,8 +34,6 @@
 #include <stdio.h>
 #include <stdint.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_memory.h>
 #include <rte_common.h>
 
index b948e30493916210e2716fc68d850a5342d04a8f..5f546de945535b931c096a06bdc742b99b80d932 100644 (file)
@@ -58,8 +58,6 @@
 #include <rte_spinlock.h>
 #include <rte_malloc.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 /*
index 533f4334618ff889dc46f47642826b89c33770f5..86cba8ae7f7f5e779ce087417eaf72b103d2d70c 100644 (file)
@@ -58,8 +58,6 @@
 #include <rte_spinlock.h>
 #include <rte_malloc.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 /*
index cebe375d17746fc768412152a99a83a33fc57d9e..d87fcc01f2820ca24bd103d421bffb57d599fc5d 100644 (file)
@@ -36,8 +36,6 @@
 #include <inttypes.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_random.h>
 #include <rte_cycles.h>
 #include <rte_memory.h>
index bcc3c0f058e9d8bee89e1c2fcf3f8f14b18593e1..d52faa38decdac831ace5fa0a9fade11786313f6 100644 (file)
@@ -37,8 +37,6 @@
 #include <stdint.h>
 #include <unistd.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifdef RTE_LIBRTE_METER
index aceb56773e24db971984ac2963fb7517d62094e8..2c916f633f0ba5025ab7168cc9bb5a4ae22cd32b 100644 (file)
@@ -33,8 +33,6 @@
 
 #include <stdio.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifndef RTE_EXEC_ENV_BAREMETAL
index 8fa041e05f204fea16bedf989a49e77c21011b97..64b13c1120c33b07d2b24659104cbd1b07b58771 100644 (file)
@@ -36,8 +36,6 @@
 #include <stdint.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_interrupts.h>
 #include <rte_pci.h>
 
index 04b556739abc46ac66fdca5e8f4dd7c15a859a3e..bd7b526cbfa1f160ef7fcd0fab0567f24ffb20b4 100644 (file)
@@ -35,8 +35,6 @@
 #include <stdint.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
index 5bc90c821b17d210d1851bae61b7fe11e6f5b161..0b08fcead872c94dd8bd9720022800e3f7ffb218 100644 (file)
@@ -37,8 +37,6 @@
 #include <limits.h>
 #include <string.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #ifdef RTE_LIBRTE_POWER
index 368853398b0356b2a0e909cb496030491d720d8e..f130f6e6fc26135f76a3dec253476a6cf84d0ae4 100644 (file)
@@ -34,8 +34,6 @@
 #include <stdio.h>
 #include <stdint.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_prefetch.h>
 
 #include "test.h"
index f394425f4f68c8330ca31c5bf5ba37733c7bdd84..bee490ed940997de1a37e8e5ed4068d494f18db8 100644 (file)
@@ -40,7 +40,6 @@
 #include <sys/time.h>
 #include <time.h>
 #include <math.h>
-#include <cmdline_parse.h>
 
 #include "test.h"
 
index 7112d2aa9e15d2dfa6d862715a30f0f15852537a..be7eefc3fcf4662c581d1702b46965fbe33deb3a 100644 (file)
@@ -59,8 +59,6 @@
 #include <rte_errno.h>
 #include <rte_hexdump.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 /*
index 9bb0aebacea217f0853aa2d225e0ea0e90d9a6f7..0e238c13e4d618cf61240a1db812211801d3691b 100644 (file)
@@ -38,8 +38,6 @@
 #include <rte_cycles.h>
 #include <rte_launch.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 /*
index 8d40f68a8c042d901a7b1f664a9b79eac3c0ea79..a76ae5611cc6a4f123156578b675573299037d57 100644 (file)
@@ -36,8 +36,6 @@
 #include <unistd.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
index 3b7cd5ebdaeaf09da51877f560ab8a01c87a39b3..0de5b1c6a66be2e45b0d29f50cd7acc5a1cb49eb 100644 (file)
@@ -37,8 +37,6 @@
 #include <stdint.h>
 #include <unistd.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #if defined(RTE_LIBRTE_SCHED) && defined(RTE_ARCH_X86_64)
index fb148cb86e7620638fc8308841c8dc3dc53fb673..ffeebf7fc268e882a25bd208dec2097fec556572 100644 (file)
@@ -38,8 +38,6 @@
 #include <unistd.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
index 42a23d19fbf35ef86fdd30bc5e65835187734cc8..1a7b0240100beb481758412aee983cc602994fbe 100644 (file)
@@ -39,8 +39,6 @@
 
 #include <rte_string_fns.h>
 
-#include <cmdline_parse.h>
-
 #include "test.h"
 
 #define LOG(...) do {\
index ee380fd06ea551631039fde3c0a417db32222e58..663d9fbcf45f611f285a7a36bd53f8647221efcc 100644 (file)
@@ -37,8 +37,6 @@
 #include <errno.h>
 #include <sys/queue.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_eal.h>
 #include <rte_eal_memconfig.h>
 #include <rte_string_fns.h>
index 3945ed8ebf947aa2ee7289a68d361a128941a2ac..38c1218a4080c2cc3f279d607f82505c002de39c 100644 (file)
 #include <sys/queue.h>
 #include <math.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_log.h>
 #include <rte_memory.h>
index 1973b3c6e63bc698994e27eb018de2095766f1ef..83474ec142ba8a3a3f7b5d96a7949a6c258481e7 100644 (file)
@@ -35,8 +35,6 @@
 #include <string.h>
 #include <stdint.h>
 
-#include <cmdline_parse.h>
-
 #include <rte_common.h>
 #include <rte_version.h>