From patchwork Tue Jan 30 14:41:26 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Bruce Richardson X-Patchwork-Id: 34708 X-Patchwork-Delegate: bruce.richardson@intel.com 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 5F16F1B41F; Tue, 30 Jan 2018 15:41:37 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 7B2C11B417 for ; Tue, 30 Jan 2018 15:41:35 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Jan 2018 06:41:34 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,435,1511856000"; d="scan'208";a="26642329" Received: from silpixa00399126.ir.intel.com (HELO silpixa00399126.ger.corp.intel.com) ([10.237.223.223]) by fmsmga001.fm.intel.com with ESMTP; 30 Jan 2018 06:41:33 -0800 From: Bruce Richardson To: dev@dpdk.org Cc: Bruce Richardson Date: Tue, 30 Jan 2018 14:41:26 +0000 Message-Id: <20180130144126.241636-1-bruce.richardson@intel.com> X-Mailer: git-send-email 2.14.3 Subject: [dpdk-dev] [PATCH] test/test: add new tests in 18.02-rc2 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Signed-off-by: Bruce Richardson Reviewed-by: Luca Boccassi --- test/test/meson.build | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/test/meson.build b/test/test/meson.build index b8bae5afa..d5b768b9d 100644 --- a/test/test/meson.build +++ b/test/test/meson.build @@ -7,6 +7,7 @@ test_sources = files('commands.c', 'test_acl.c', 'test_alarm.c', 'test_atomic.c', + 'test_barrier.c', 'test_byteorder.c', 'test_cmdline.c', 'test_cmdline_cirbuf.c', @@ -70,6 +71,8 @@ test_sources = files('commands.c', 'test_power_acpi_cpufreq.c', 'test_power_kvm_vm.c', 'test_prefetch.c', + 'test_reciprocal_division.c', + 'test_reciprocal_division_perf.c', 'test_red.c', 'test_reorder.c', 'test_ring.c', @@ -118,6 +121,7 @@ test_names = [ 'acl_autotest', 'alarm_autotest', 'atomic_autotest', + 'barrier_autotest', 'byteorder_autotest', 'cmdline_autotest', 'common_autotest', @@ -184,6 +188,8 @@ test_names = [ 'power_autotest', 'power_kvm_vm_autotest', 'prefetch_autotest', + 'reciprocal_division', + 'reciprocal_division_perf', 'red_all', 'red_autotest', 'red_perf',