From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [RFC PATCH 4/4] test: change lpm routes file from header to data file Date: Fri, 6 May 2016 13:51:32 +0100 Message-ID: <1462539092-24389-5-git-send-email-bruce.richardson@intel.com> References: <1462539092-24389-1-git-send-email-bruce.richardson@intel.com> Cc: Bruce Richardson To: dev@dpdk.org Return-path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id E61055598 for ; Fri, 6 May 2016 14:51:57 +0200 (CEST) In-Reply-To: <1462539092-24389-1-git-send-email-bruce.richardson@intel.com> List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Change the file extension of the test_lpm_routes file from .h to .dat. This makes the lines-of-code counts for DPDK more realistic as they are not affected by the huge counts from the lpm data. Signed-off-by: Bruce Richardson --- app/test/Makefile | 2 +- app/test/{test_lpm_routes.h => test_lpm_routes.dat} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app/test/{test_lpm_routes.h => test_lpm_routes.dat} (100%) diff --git a/app/test/Makefile b/app/test/Makefile index 94ba990..9107a91 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -125,7 +125,7 @@ SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_perf.c SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_functions.c SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_scaling.c -$(eval $(call resource,test_lpm_data,test_lpm_routes.h)) +$(eval $(call resource,test_lpm_data,test_lpm_routes.dat)) SRCS-$(CONFIG_RTE_LIBRTE_LPM) += test_lpm.c SRCS-$(CONFIG_RTE_LIBRTE_LPM) += test_lpm6.c diff --git a/app/test/test_lpm_routes.h b/app/test/test_lpm_routes.dat similarity index 100% rename from app/test/test_lpm_routes.h rename to app/test/test_lpm_routes.dat -- 2.5.5