DPDK patches and discussions
 help / color / mirror / Atom feed
From: "Ananyev, Konstantin" <konstantin.ananyev@intel.com>
To: "Richardson, Bruce" <bruce.richardson@intel.com>,
	"thomas@monjalon.net" <thomas@monjalon.net>
Cc: "dev@dpdk.org" <dev@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH v3 2/5] test/test-acl: move to app directory
Date: Tue, 26 Feb 2019 12:27:01 +0000	[thread overview]
Message-ID: <2601191342CEEE43887BDE71AB977258012413D3DA@irsmsx105.ger.corp.intel.com> (raw)
In-Reply-To: <20190226121903.5499-3-bruce.richardson@intel.com>



> -----Original Message-----
> From: Richardson, Bruce
> Sent: Tuesday, February 26, 2019 12:19 PM
> To: thomas@monjalon.net
> Cc: dev@dpdk.org; Richardson, Bruce <bruce.richardson@intel.com>; Ananyev, Konstantin <konstantin.ananyev@intel.com>
> Subject: [PATCH v3 2/5] test/test-acl: move to app directory
> 
> Move to "app" directory and enable with meson build.
> 
> CC: Konstantin Ananyev <konstantin.ananyev@intel.com>
> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
> ---
>  MAINTAINERS                     | 2 +-
>  app/Makefile                    | 1 +
>  app/meson.build                 | 1 +
>  {test => app}/test-acl/Makefile | 0
>  {test => app}/test-acl/main.c   | 0
>  app/test-acl/meson.build        | 5 +++++
>  test/Makefile                   | 1 -
>  7 files changed, 8 insertions(+), 2 deletions(-)
>  rename {test => app}/test-acl/Makefile (100%)
>  rename {test => app}/test-acl/main.c (100%)
>  create mode 100644 app/test-acl/meson.build
> 
> diff --git a/MAINTAINERS b/MAINTAINERS
> index 293bf6aa4..4f34c6e4c 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -1106,7 +1106,7 @@ ACL
>  M: Konstantin Ananyev <konstantin.ananyev@intel.com>
>  F: lib/librte_acl/
>  F: doc/guides/prog_guide/packet_classif_access_ctrl.rst
> -F: test/test-acl/
> +F: app/test-acl/
>  F: test/test/test_acl.*
>  F: examples/l3fwd-acl/
>  F: doc/guides/sample_app_ug/l3_forward_access_ctrl.rst
> diff --git a/app/Makefile b/app/Makefile
> index 51237d0f4..234e3f504 100644
> --- a/app/Makefile
> +++ b/app/Makefile
> @@ -6,6 +6,7 @@ include $(RTE_SDK)/mk/rte.vars.mk
>  DIRS-$(CONFIG_RTE_TEST_PMD) += test-pmd
>  DIRS-$(CONFIG_RTE_PROC_INFO) += proc-info
>  DIRS-$(CONFIG_RTE_LIBRTE_PDUMP) += pdump
> +DIRS-$(CONFIG_RTE_LIBRTE_ACL) += test-acl
>  DIRS-$(CONFIG_RTE_LIBRTE_CMDLINE) += test-cmdline
> 
>  ifeq ($(CONFIG_RTE_LIBRTE_BBDEV),y)
> diff --git a/app/meson.build b/app/meson.build
> index 8bdf4f581..3a34ebbf3 100644
> --- a/app/meson.build
> +++ b/app/meson.build
> @@ -4,6 +4,7 @@
>  apps = [
>  	'pdump',
>  	'proc-info',
> +	'test-acl',
>  	'test-bbdev',
>  	'test-cmdline',
>  	'test-compress-perf',
> diff --git a/test/test-acl/Makefile b/app/test-acl/Makefile
> similarity index 100%
> rename from test/test-acl/Makefile
> rename to app/test-acl/Makefile
> diff --git a/test/test-acl/main.c b/app/test-acl/main.c
> similarity index 100%
> rename from test/test-acl/main.c
> rename to app/test-acl/main.c
> diff --git a/app/test-acl/meson.build b/app/test-acl/meson.build
> new file mode 100644
> index 000000000..d5c2581b4
> --- /dev/null
> +++ b/app/test-acl/meson.build
> @@ -0,0 +1,5 @@
> +# SPDX-License-Identifier: BSD-3-Clause
> +# Copyright(c) 2019 Intel Corporation
> +
> +sources = files('main.c')
> +deps += ['acl', 'net']
> diff --git a/test/Makefile b/test/Makefile
> index 4ffc087a0..0b7a3ed96 100644
> --- a/test/Makefile
> +++ b/test/Makefile
> @@ -4,7 +4,6 @@
>  include $(RTE_SDK)/mk/rte.vars.mk
> 
>  DIRS-$(CONFIG_RTE_APP_TEST) += test
> -DIRS-$(CONFIG_RTE_LIBRTE_ACL) += test-acl
>  DIRS-$(CONFIG_RTE_LIBRTE_PIPELINE) += test-pipeline
> 
>  include $(RTE_SDK)/mk/rte.subdir.mk
> --

Acked-by: Konstantin Ananyev <konstantin.ananyev@intel.com>

> 2.20.1

  reply	other threads:[~2019-02-26 12:27 UTC|newest]

Thread overview: 33+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-01-25 20:26 [dpdk-dev] [PATCH 0/4] RFC: consolidate testing apps to app dir Bruce Richardson
2019-01-25 20:26 ` [dpdk-dev] [PATCH 1/4] test/cmdline_test: move to app directory Bruce Richardson
2019-01-25 20:26 ` [dpdk-dev] [PATCH 2/4] test/test-acl: " Bruce Richardson
2019-01-25 20:26 ` [dpdk-dev] [PATCH 3/4] test/test-pipeline: " Bruce Richardson
2019-01-25 20:26 ` [dpdk-dev] [PATCH 4/4] test/bpf: move to examples folder Bruce Richardson
2019-01-25 20:30 ` [dpdk-dev] [PATCH 0/4] RFC: consolidate testing apps to app dir Bruce Richardson
2019-01-29 11:40   ` Thomas Monjalon
2019-01-29 11:52     ` Bruce Richardson
2019-02-19 14:53 ` [dpdk-dev] [PATCH v2 0/5] " Bruce Richardson
2019-02-19 14:53   ` [dpdk-dev] [PATCH v2 1/5] test/cmdline_test: move to app directory Bruce Richardson
2019-02-26  9:14     ` Thomas Monjalon
2019-02-26 10:00       ` Bruce Richardson
2019-02-26 11:24       ` Bruce Richardson
2019-02-26 12:20         ` Bruce Richardson
2019-02-19 14:53   ` [dpdk-dev] [PATCH v2 2/5] test/test-acl: " Bruce Richardson
2019-02-19 14:53   ` [dpdk-dev] [PATCH v2 3/5] test/test-pipeline: " Bruce Richardson
2019-02-19 14:53   ` [dpdk-dev] [PATCH v2 4/5] test/bpf: move to examples folder Bruce Richardson
2019-02-20  9:35     ` Ananyev, Konstantin
2019-02-20  9:39       ` Bruce Richardson
2019-02-20  9:42         ` Ananyev, Konstantin
2019-02-20 10:35         ` Thomas Monjalon
2019-02-25 16:22     ` Ananyev, Konstantin
2019-02-19 14:53   ` [dpdk-dev] [PATCH v2 5/5] test/test: move to app folder Bruce Richardson
2019-02-20 11:47   ` [dpdk-dev] [PATCH v2 0/5] consolidate testing apps to app dir Ferruh Yigit
2019-02-25 15:34     ` Bruce Richardson
2019-02-26 12:18 ` [dpdk-dev] [PATCH v3 " Bruce Richardson
2019-02-26 12:18   ` [dpdk-dev] [PATCH v3 1/5] test/cmdline_test: move to app directory Bruce Richardson
2019-02-26 12:19   ` [dpdk-dev] [PATCH v3 2/5] test/test-acl: " Bruce Richardson
2019-02-26 12:27     ` Ananyev, Konstantin [this message]
2019-02-26 12:19   ` [dpdk-dev] [PATCH v3 3/5] test/test-pipeline: " Bruce Richardson
2019-02-26 12:19   ` [dpdk-dev] [PATCH v3 4/5] test/bpf: move to examples folder Bruce Richardson
2019-02-26 12:19   ` [dpdk-dev] [PATCH v3 5/5] test/test: move to app folder Bruce Richardson
2019-02-26 14:40   ` [dpdk-dev] [PATCH v3 0/5] consolidate testing apps to app dir Thomas Monjalon

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=2601191342CEEE43887BDE71AB977258012413D3DA@irsmsx105.ger.corp.intel.com \
    --to=konstantin.ananyev@intel.com \
    --cc=bruce.richardson@intel.com \
    --cc=dev@dpdk.org \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).