From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 9FC7B8D3B for ; Wed, 12 Aug 2015 14:39:48 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga103.fm.intel.com with ESMTP; 12 Aug 2015 05:39:47 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.15,661,1432623600"; d="scan'208";a="747115006" Received: from unknown (HELO stargo) ([10.217.248.233]) by orsmga001.jf.intel.com with SMTP; 12 Aug 2015 05:39:45 -0700 Received: by stargo (sSMTP sendmail emulation); Wed, 12 Aug 2015 14:41:32 +0200 From: Maciej Gajdzica To: dev@dpdk.org Date: Wed, 12 Aug 2015 14:41:26 +0200 Message-Id: <1439383287-28447-1-git-send-email-maciejx.t.gajdzica@intel.com> X-Mailer: git-send-email 1.9.1 Subject: [dpdk-dev] [PATCH 1/1] test_table: added ACL table test to the list 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: Wed, 12 Aug 2015 12:39:49 -0000 test_table_ACL wasn't invoked when running table_autotest. Added this test to table_tests array to make it run with other table tests. Signed-off-by: Maciej Gajdzica --- app/test/test_table_tables.c | 3 +++ app/test/test_table_tables.h | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/app/test/test_table_tables.c b/app/test/test_table_tables.c index 88bebf8..a66e277 100644 --- a/app/test/test_table_tables.c +++ b/app/test/test_table_tables.c @@ -46,6 +46,9 @@ table_test table_tests[] = { test_table_lpm_ipv6, test_table_hash_lru, test_table_hash_ext, +#ifdef RTE_LIBRTE_ACL + test_table_ACL, +#endif }; #define PREPARE_PACKET(mbuf, value) do { \ diff --git a/app/test/test_table_tables.h b/app/test/test_table_tables.h index b368623..3d31492 100644 --- a/app/test/test_table_tables.h +++ b/app/test/test_table_tables.h @@ -36,7 +36,7 @@ int test_table_lpm(void); int test_table_lpm_ipv6(void); int test_table_array(void); #ifdef RTE_LIBRTE_ACL -int test_table_acl(void); +int test_table_ACL(void); #endif int test_table_hash_unoptimized(void); int test_table_hash_lru(void); -- 1.7.9.5