From patchwork Wed Dec 5 16:25:48 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Anatoly Burakov X-Patchwork-Id: 48547 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 947881B115; Wed, 5 Dec 2018 17:25:53 +0100 (CET) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id B77191B10D; Wed, 5 Dec 2018 17:25:51 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 05 Dec 2018 08:25:50 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,318,1539673200"; d="scan'208";a="116230955" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by orsmga001.jf.intel.com with ESMTP; 05 Dec 2018 08:25:49 -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 wB5GPmt1010582; Wed, 5 Dec 2018 16:25:49 GMT Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id wB5GPmUL003290; Wed, 5 Dec 2018 16:25:48 GMT Received: (from aburakov@localhost) by sivswdev01.ir.intel.com with LOCAL id wB5GPmpd003286; Wed, 5 Dec 2018 16:25:48 GMT From: Anatoly Burakov To: dev@dpdk.org Cc: stable@dpdk.org Date: Wed, 5 Dec 2018 16:25:48 +0000 Message-Id: <2e33d0db21b3ae0e06ed442888fa3db2419a3aa2.1544026386.git.anatoly.burakov@intel.com> X-Mailer: git-send-email 1.7.0.7 Subject: [dpdk-dev] [PATCH] test: add missing external mem 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" The 'external_mem_autotest' was defined in the meson build, but the actual source file was not being compiled by meson. Fixes: b270daa43b3d ("test: support external memory") Cc: stable@dpdk.org Signed-off-by: Anatoly Burakov --- test/test/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/test/test/meson.build b/test/test/meson.build index 554e9945f..0914aa258 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_external_mem.c', 'test_func_reentrancy.c', 'test_flow_classify.c', 'test_hash.c',