From patchwork Wed Dec 5 16:26:00 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Burakov, Anatoly" X-Patchwork-Id: 48548 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 192901B14D; Wed, 5 Dec 2018 17:26:04 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 872431B141; Wed, 5 Dec 2018 17:26:02 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Dec 2018 08:26:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,318,1539673200"; d="scan'208";a="123218629" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 05 Dec 2018 08:26:00 -0800 Received: from sivswdev01.ir.intel.com (sivswdev01.ir.intel.com [10.237.217.45]) by irvmail001.ir.intel.com (8.14.3/8.13.6/MailSET/Hub) with ESMTP id wB5GQ0kF010903; Wed, 5 Dec 2018 16:26:00 GMT Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id wB5GQ0L4003502; Wed, 5 Dec 2018 16:26:00 GMT Received: (from aburakov@localhost) by sivswdev01.ir.intel.com with LOCAL id wB5GQ0Dv003496; Wed, 5 Dec 2018 16:26:00 GMT From: Anatoly Burakov To: dev@dpdk.org Cc: stable@dpdk.org Date: Wed, 5 Dec 2018 16:26:00 +0000 Message-Id: X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH] test: add missing fbarray autotest to meson 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Currently, fbarray autotest is only built by make, but is missing from meson build files. Fixes: 7985860c18af ("test/fbarray: add autotests") Cc: stable@dpdk.org Signed-off-by: Anatoly Burakov Acked-by: Bruce Richardson --- test/test/meson.build | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/test/meson.build b/test/test/meson.build index 554e9945f..1c945ed3d 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -39,6 +39,7 @@ test_sources = files('commands.c', 'test_event_eth_tx_adapter.c', 'test_event_timer_adapter.c', 'test_eventdev.c', + 'test_fbarray.c', 'test_func_reentrancy.c', 'test_flow_classify.c', 'test_hash.c', @@ -170,6 +171,7 @@ test_names = [ 'eventdev_octeontx_autotest', 'eventdev_sw_autotest', 'external_mem_autotest', + 'fbarray_autotest', 'func_reentrancy_autotest', 'flow_classify_autotest', 'hash_autotest',