DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] app/test: remove ifdefs for cmdline library
@ 2023-12-14 11:30 Bruce Richardson
  2023-12-14 17:03 ` Tyler Retzlaff
  0 siblings, 1 reply; 3+ messages in thread
From: Bruce Richardson @ 2023-12-14 11:30 UTC (permalink / raw)
  To: dev; +Cc: Bruce Richardson

The DPDK unit test binary relies on cmdline library and cannot do
anything without it being present. As it's a mandatory dependency we can
remove the ifdefs for it from main.c

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
---
 app/test/test.c | 6 ------
 1 file changed, 6 deletions(-)

diff --git a/app/test/test.c b/app/test/test.c
index bfa9ea52e3..c818fda17b 100644
--- a/app/test/test.c
+++ b/app/test/test.c
@@ -11,13 +11,11 @@
 #include <ctype.h>
 #include <sys/queue.h>
 
-#ifdef RTE_LIB_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_eal.h>
@@ -106,12 +104,10 @@ int last_test_result;
 int
 main(int argc, char **argv)
 {
-#ifdef RTE_LIB_CMDLINE
 	struct cmdline *cl;
 	char *tests[argc]; /* store an array of tests to run */
 	int test_count = 0;
 	int i;
-#endif
 	char *extra_args;
 	int ret;
 
@@ -183,7 +179,6 @@ main(int argc, char **argv)
 				"HPET is not enabled, using TSC as default timer\n");
 
 
-#ifdef RTE_LIB_CMDLINE
 	char *dpdk_test = getenv("DPDK_TEST");
 
 	if (dpdk_test && strlen(dpdk_test) > 0)
@@ -259,7 +254,6 @@ main(int argc, char **argv)
 		cmdline_interact(cl);
 		cmdline_stdin_exit(cl);
 	}
-#endif
 	ret = 0;
 
 out:
-- 
2.40.1


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] app/test: remove ifdefs for cmdline library
  2023-12-14 11:30 [PATCH] app/test: remove ifdefs for cmdline library Bruce Richardson
@ 2023-12-14 17:03 ` Tyler Retzlaff
  2024-02-01 10:33   ` David Marchand
  0 siblings, 1 reply; 3+ messages in thread
From: Tyler Retzlaff @ 2023-12-14 17:03 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev

On Thu, Dec 14, 2023 at 11:30:21AM +0000, Bruce Richardson wrote:
> The DPDK unit test binary relies on cmdline library and cannot do
> anything without it being present. As it's a mandatory dependency we can
> remove the ifdefs for it from main.c
> 
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---

Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] app/test: remove ifdefs for cmdline library
  2023-12-14 17:03 ` Tyler Retzlaff
@ 2024-02-01 10:33   ` David Marchand
  0 siblings, 0 replies; 3+ messages in thread
From: David Marchand @ 2024-02-01 10:33 UTC (permalink / raw)
  To: Bruce Richardson; +Cc: dev, Tyler Retzlaff

On Thu, Dec 14, 2023 at 6:03 PM Tyler Retzlaff
<roretzla@linux.microsoft.com> wrote:
>
> On Thu, Dec 14, 2023 at 11:30:21AM +0000, Bruce Richardson wrote:
> > The DPDK unit test binary relies on cmdline library and cannot do
> > anything without it being present. As it's a mandatory dependency we can
> > remove the ifdefs for it from main.c
> >
> > Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> Acked-by: Tyler Retzlaff <roretzla@linux.microsoft.com>

Applied, thanks.


-- 
David Marchand


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-02-01 10:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-12-14 11:30 [PATCH] app/test: remove ifdefs for cmdline library Bruce Richardson
2023-12-14 17:03 ` Tyler Retzlaff
2024-02-01 10:33   ` David Marchand

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).