From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id DD6F4A0679 for ; Wed, 3 Apr 2019 12:33:46 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 539A31B148; Wed, 3 Apr 2019 12:33:40 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 6DF511B129 for ; Wed, 3 Apr 2019 12:33:36 +0200 (CEST) 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; 03 Apr 2019 03:33:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,304,1549958400"; d="scan'208";a="160983700" Received: from lkrakowx-mobl.ger.corp.intel.com ([10.103.104.101]) by fmsmga001.fm.intel.com with ESMTP; 03 Apr 2019 03:33:34 -0700 From: Lukasz Krakowiak To: david.hunt@intel.com Cc: anatoly.burakov@intel.com, dev@dpdk.org, Lukasz Krakowiak Date: Wed, 3 Apr 2019 12:32:54 +0200 Message-Id: <20190403103256.21856-2-lukaszx.krakowiak@intel.com> X-Mailer: git-send-email 2.19.2.windows.1 In-Reply-To: <20190403103256.21856-1-lukaszx.krakowiak@intel.com> References: <20190307135950.30738-1-lukaszx.krakowiak@intel.com> <20190403103256.21856-1-lukaszx.krakowiak@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v2 1/3] test: rename test_power_acpi_cpufreq.c -> app/test/test_power_cpufreq.c 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" Content-Type: text/plain; charset="UTF-8" Message-ID: <20190403103254.Qo7awP6v9rpLCcdk5DutJ_wx3p2g8d_6F_AXWlOgPoI@z> This patch rename file test_power_acpi_cpufreq.c -> app/test/test_power_cpufreq.c. Signed-off-by: Lukasz Krakowiak --- app/test/Makefile | 2 +- app/test/meson.build | 2 +- app/test/{test_power_acpi_cpufreq.c => test_power_cpufreq.c} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename app/test/{test_power_acpi_cpufreq.c => test_power_cpufreq.c} (100%) diff --git a/app/test/Makefile b/app/test/Makefile index 89949c2bb..d1bcfd456 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -158,7 +158,7 @@ endif SRCS-$(CONFIG_RTE_LIBRTE_METER) += test_meter.c SRCS-$(CONFIG_RTE_LIBRTE_KNI) += test_kni.c -SRCS-$(CONFIG_RTE_LIBRTE_POWER) += test_power.c test_power_acpi_cpufreq.c +SRCS-$(CONFIG_RTE_LIBRTE_POWER) += test_power.c test_power_cpufreq.c SRCS-$(CONFIG_RTE_LIBRTE_POWER) += test_power_kvm_vm.c SRCS-y += test_common.c diff --git a/app/test/meson.build b/app/test/meson.build index 05e5ddeb0..4ae3dffea 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -82,7 +82,7 @@ test_sources = files('commands.c', 'test_pmd_ring.c', 'test_pmd_ring_perf.c', 'test_power.c', - 'test_power_acpi_cpufreq.c', + 'test_power_cpufreq.c', 'test_power_kvm_vm.c', 'test_prefetch.c', 'test_reciprocal_division.c', diff --git a/app/test/test_power_acpi_cpufreq.c b/app/test/test_power_cpufreq.c similarity index 100% rename from app/test/test_power_acpi_cpufreq.c rename to app/test/test_power_cpufreq.c -- 2.19.2.windows.1