From mboxrd@z Thu Jan 1 00:00:00 1970 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) Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga103.jf.intel.com with ESMTP; 14 Jul 2016 09:06:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.28,363,1464678000"; d="scan'208";a="1021765008" Received: from irvmail001.ir.intel.com ([163.33.26.43]) by fmsmga002.fm.intel.com with ESMTP; 14 Jul 2016 09:06:45 -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 u6EG6i5i024196; Thu, 14 Jul 2016 17:06:44 +0100 Received: from sivswdev01.ir.intel.com (localhost [127.0.0.1]) by sivswdev01.ir.intel.com with ESMTP id u6EG6iqJ030770; Thu, 14 Jul 2016 17:06:44 +0100 Received: (from bricha3@localhost) by sivswdev01.ir.intel.com with id u6EG6iRx030766; Thu, 14 Jul 2016 17:06:44 +0100 From: Bruce Richardson To: dev@dpdk.org Cc: Nikita Kozlov , Thomas Monjalon , Bruce Richardson Date: Thu, 14 Jul 2016 17:06:18 +0100 Message-Id: <1468512382-30412-2-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 1/5] test: fix unneeded routes table include from lpm test 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:00 -0000 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