[v2] test/event: add adapter tests to meson build

Message ID 1536156373-155714-1-git-send-email-nikhil.rao@intel.com (mailing list archive)
State Changes Requested, archived
Delegated to: Jerin Jacob
Headers
Series [v2] test/event: add adapter tests to meson build |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/Intel-compilation success Compilation OK

Commit Message

Rao, Nikhil Sept. 5, 2018, 2:06 p.m. UTC
  Add tests for event eth Rx, crypto and timer adapters to
meson build

Cc: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
Cc: Erik G. Carrillo <erik.g.carrillo@intel.com>
Signed-off-by: Nikhil Rao <nikhil.rao@intel.com>
---

v2:
* fix Erik's email address

 test/test/meson.build | 7 +++++++
 1 file changed, 7 insertions(+)
  

Comments

Bruce Richardson Sept. 7, 2018, 3:58 p.m. UTC | #1
On Wed, Sep 05, 2018 at 07:36:13PM +0530, Nikhil Rao wrote:
> Add tests for event eth Rx, crypto and timer adapters to
> meson build
> 
> Cc: Abhinandan Gujjar <abhinandan.gujjar@intel.com>
> Cc: Erik G. Carrillo <erik.g.carrillo@intel.com>
> Signed-off-by: Nikhil Rao <nikhil.rao@intel.com>
> ---
> 
> v2:
> * fix Erik's email address
> 
>  test/test/meson.build | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
When running this with test-meson-build.sh, errors are thrown up with the
x86-default build. Please investigate.

Regards,
/Bruce
  

Patch

diff --git a/test/test/meson.build b/test/test/meson.build
index b1dd6ec..1b2e8b7 100644
--- a/test/test/meson.build
+++ b/test/test/meson.build
@@ -33,7 +33,10 @@  test_sources = files('commands.c',
 	'test_efd.c',
 	'test_efd_perf.c',
 	'test_errno.c',
+	'test_event_crypto_adapter.c',
+	'test_event_eth_rx_adapter.c',
 	'test_event_ring.c',
+	'test_event_timer_adapter.c',
 	'test_eventdev.c',
 	'test_func_reentrancy.c',
 	'test_flow_classify.c',
@@ -151,7 +154,11 @@  test_names = [
 	'efd_autotest',
 	'efd_perf_autotest',
 	'errno_autotest',
+	'event_crypto_adapter_autotest',
+	'event_eth_rx_adapter_autotest',
+	'event_eth_rx_intr_adapter_autotest',
 	'event_ring_autotest',
+	'event_timer_adapter_autotest',
 	'eventdev_common_autotest',
 	'eventdev_octeontx_autotest',
 	'eventdev_sw_autotest',