From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 603DF1B136 for ; Thu, 27 Sep 2018 07:44:19 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Sep 2018 22:44:17 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,309,1534834800"; d="scan'208";a="76563932" Received: from unknown (HELO localhost.localdomain.localdomain) ([10.224.122.193]) by orsmga008.jf.intel.com with ESMTP; 26 Sep 2018 22:44:00 -0700 From: Nikhil Rao To: thomas@monjalon.net, jerin.jacob@caviumnetworks.com Cc: dev@dpdk.org, bruce.richardson@intel.com, Nikhil Rao , Abhinandan Gujjar , "Erik G. Carrillo" Date: Thu, 27 Sep 2018 11:16:15 +0530 Message-Id: <1538027175-87290-2-git-send-email-nikhil.rao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1538027175-87290-1-git-send-email-nikhil.rao@intel.com> References: <1536155732-155032-1-git-send-email-nikhil.rao@intel.com> <1538027175-87290-1-git-send-email-nikhil.rao@intel.com> Subject: [dpdk-dev] [PATCH v2 2/2] test/event: add adapter tests to meson build X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 27 Sep 2018 05:44:19 -0000 Add tests for event eth Rx, crypto and timer adapters to meson build Cc: Abhinandan Gujjar Cc: Erik G. Carrillo Signed-off-by: Nikhil Rao --- test/test/meson.build | 7 +++++++ 1 file changed, 7 insertions(+) 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', -- 1.8.3.1