app/eventdev: fix test pipeline meson build

Message ID 20200203045300.5079-1-pbhagavatula@marvell.com (mailing list archive)
State Accepted, archived
Delegated to: Jerin Jacob
Headers
Series app/eventdev: fix test pipeline meson build |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-testing success Testing PASS
ci/travis-robot success Travis build: passed
ci/iol-intel-Performance success Performance Testing PASS
ci/iol-nxp-Performance success Performance Testing PASS
ci/Intel-compilation fail apply issues

Commit Message

Pavan Nikhilesh Bhagavatula Feb. 3, 2020, 4:52 a.m. UTC
  From: Pavan Nikhilesh <pbhagavatula@marvell.com>

Add missing pipeline test to meson build.

Fixes: 2ff67267b049 ("app/eventdev: build with meson")

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
---
 app/test-eventdev/meson.build | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)
  

Comments

Jerin Jacob Feb. 15, 2020, 7:51 a.m. UTC | #1
On Mon, Feb 3, 2020 at 10:23 AM <pbhagavatula@marvell.com> wrote:
>
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
>
> Add missing pipeline test to meson build.
>
> Fixes: 2ff67267b049 ("app/eventdev: build with meson")
Cc: stable@dpdk.org

>
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
Acked-by: Jerin Jacob <jerinj@marvell.com>
Applied to dpdk-next-eventdev/master. Thanks.


> ---
>  app/test-eventdev/meson.build | 5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/app/test-eventdev/meson.build b/app/test-eventdev/meson.build
> index 7ff2b786c..9e588d9ec 100644
> --- a/app/test-eventdev/meson.build
> +++ b/app/test-eventdev/meson.build
> @@ -10,5 +10,8 @@ sources = files('evt_main.c',
>                 'test_order_queue.c',
>                 'test_perf_common.c',
>                 'test_perf_atq.c',
> -               'test_perf_queue.c')
> +               'test_perf_queue.c',
> +               'test_pipeline_common.c',
> +               'test_pipeline_atq.c',
> +               'test_pipeline_queue.c')
>  deps += 'eventdev'
> --
> 2.17.1
>
  

Patch

diff --git a/app/test-eventdev/meson.build b/app/test-eventdev/meson.build
index 7ff2b786c..9e588d9ec 100644
--- a/app/test-eventdev/meson.build
+++ b/app/test-eventdev/meson.build
@@ -10,5 +10,8 @@  sources = files('evt_main.c',
 		'test_order_queue.c',
 		'test_perf_common.c',
 		'test_perf_atq.c',
-		'test_perf_queue.c')
+		'test_perf_queue.c',
+		'test_pipeline_common.c',
+		'test_pipeline_atq.c',
+		'test_pipeline_queue.c')
 deps += 'eventdev'