From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bruce Richardson Subject: [PATCH v2 1/5] test: fix unneeded routes table include from lpm test Date: Thu, 14 Jul 2016 17:06:18 +0100 Message-ID: <1468512382-30412-2-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> Cc: Nikita Kozlov , Thomas Monjalon , 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 A73B74AC7 for ; Thu, 14 Jul 2016 18:06:59 +0200 (CEST) In-Reply-To: <1468512382-30412-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" The large routing table header file in only needed by the performance tests and not by the functional tests to remove the include of test_lpm_routes.h from test_lpm.c. Fixes: 62dac65a3265 ("app/test: isolate lpm performance cases") Signed-off-by: Bruce Richardson --- app/test/test_lpm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_lpm.c b/app/test/test_lpm.c index f6930fb..8d1bae9 100644 --- a/app/test/test_lpm.c +++ b/app/test/test_lpm.c @@ -36,9 +36,9 @@ #include #include +#include #include "test.h" -#include "test_lpm_routes.h" #include "test_xmmt_ops.h" #define TEST_LPM_ASSERT(cond) do { \ -- 2.5.5