From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 594ED3978 for ; Thu, 14 Jul 2016 18:07:02 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP; 14 Jul 2016 09:06:55 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,363,1464678000"; d="scan'208";a="1006880207" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga001.fm.intel.com with ESMTP; 14 Jul 2016 09:06:54 -0700 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 u6EG6rTc024439; Thu, 14 Jul 2016 17:06:53 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id u6EG6rHN030805; Thu, 14 Jul 2016 17:06:53 +0100 Received: (from bricha3@localhost) by sivswdev01.ir.intel.com with id u6EG6rqd030801; Thu, 14 Jul 2016 17:06:53 +0100 From: Bruce Richardson To: dev@dpdk.org Cc: Nikita Kozlov , Thomas Monjalon , Bruce Richardson Date: Thu, 14 Jul 2016 17:06:22 +0100 Message-Id: <1468512382-30412-6-git-send-email-bruce.richardson@intel.com> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1468512382-30412-1-git-send-email-bruce.richardson@intel.com> References: <1465909410-4668-1-git-send-email-nikita@elyzion.net> <1468512382-30412-1-git-send-email-bruce.richardson@intel.com> Subject: [dpdk-dev] [PATCH v2 5/5] test: change lpm routes file from header to data file X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Jul 2016 16:07:02 -0000 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 a147db4..cc8c205 100644 --- a/app/test/Makefile +++ b/app/test/Makefile @@ -127,7 +127,7 @@ SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_functions.c SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_scaling.c SRCS-$(CONFIG_RTE_LIBRTE_HASH) += test_hash_multiwriter.c -$(eval $(call linked_resource,test_lpm_data,test_lpm_routes.h)) +$(eval $(call linked_resource,test_lpm_data,test_lpm_routes.dat)) SRCS-$(CONFIG_RTE_LIBRTE_LPM) += test_lpm.c SRCS-$(CONFIG_RTE_LIBRTE_LPM) += test_lpm_perf.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