From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 107ECA3160 for ; Sat, 12 Oct 2019 15:44:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BF0EF1EA5A; Sat, 12 Oct 2019 15:44:38 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 065DE1EA4E for ; Sat, 12 Oct 2019 15:44:36 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 12 Oct 2019 06:44:36 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.67,288,1566889200"; d="scan'208";a="206746938" Received: from unknown (HELO dpdktestzhiwei.sh.intel.com) ([10.67.119.33]) by orsmga002.jf.intel.com with ESMTP; 12 Oct 2019 06:44:34 -0700 From: "zhiwei.he" To: dts@dpdk.org Cc: "zhiwei.he" Date: Sat, 12 Oct 2019 21:45:34 +0800 Message-Id: <1570887934-73357-1-git-send-email-zhiwei.he@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] tests/TestSuite_generic_flow_api Enable CVL to support tunnel filter vxlan and nvgre fdir IPV4 ipv6 and vxlan X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: "zhiwei.he" Signed-off-by: zhiwei.he --- tests/TestSuite_generic_flow_api.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tests/TestSuite_generic_flow_api.py b/tests/TestSuite_generic_flow_api.py index e0a4aa6..0b08d90 100644 --- a/tests/TestSuite_generic_flow_api.py +++ b/tests/TestSuite_generic_flow_api.py @@ -770,7 +770,7 @@ class TestGeneric_flow_api(TestCase): """ supported by i40e, ixgbe and igb """ - self.verify(self.nic in ["niantic", "kawela_4", "kawela", "bartonhills", "twinville", "sagepond", "sageville", + self.verify(self.nic in ["niantic", "columbiaville_25g","columbiaville_100g","kawela_4", "kawela", "bartonhills", "twinville", "sagepond", "sageville", "powerville", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortpark_TLV"], "%s nic not support ethertype filter" % self.nic) @@ -782,7 +782,7 @@ class TestGeneric_flow_api(TestCase): # i40e,ixgbe and igb support different packet types. if (self.nic in ["fortville_eagle", "fortville_spirit", - "fortville_spirit_single", "fortpark_TLV"]): + "fortville_spirit_single", "fortpark_TLV","columbiaville_25g","columbiaville_100g"]): basic_flow_actions = [ {'create': 'validate', 'flows': ['ether', 'arp'], 'actions': ['queue']}, @@ -979,12 +979,12 @@ class TestGeneric_flow_api(TestCase): """ only supported by i40e and ixgbe """ - self.verify(self.nic in ["niantic", "twinville", "sagepond", "sageville", + self.verify(self.nic in ["niantic", "columbiaville_25g","columbiaville_100g","twinville", "sagepond", "sageville", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortpark_TLV"], "%s nic not support fdir ipv4 filter" % self.nic) # i40e - if (self.nic in ["fortville_eagle", "fortville_spirit", + if (self.nic in ["fortville_eagle", "fortville_spirit","columbiaville_25g","columbiaville_100g", "fortville_spirit_single", "fortpark_TLV"]): self.setup_env() # start testpmd on pf @@ -1088,12 +1088,12 @@ class TestGeneric_flow_api(TestCase): """ only supported by i40e and ixgbe """ - self.verify(self.nic in ["niantic", "twinville", "sagepond", "sageville", + self.verify(self.nic in ["niantic", "twinville", "sagepond", "sageville","columbiaville_25g","columbiaville_100g", "fortville_eagle", "fortville_spirit", "fortville_spirit_single", "fortpark_TLV"], "%s nic not support fdir ipv6 filter" % self.nic) # i40e - if (self.nic in ["fortville_eagle", "fortville_spirit", + if (self.nic in ["fortville_eagle", "fortville_spirit","columbiaville_25g","columbiaville_100g", "fortville_spirit_single", "fortpark_TLV"]): self.setup_env() self.pmdout.start_testpmd("%s" % self.pf_cores, "--pkt-filter-mode=perfect --disable-rss --rxq=%d --txq=%d" % (MAX_QUEUE+1, MAX_QUEUE+1), "-w %s --file-prefix=pf --socket-mem 1024,1024 --legacy-mem" % self.pf_pci) @@ -1495,7 +1495,7 @@ class TestGeneric_flow_api(TestCase): """ only supported by ixgbe """ - self.verify(self.nic in ["twinville", "sagepond", "sageville"], "%s nic not support fdir vxlan filter" % self.nic) + self.verify(self.nic in ["twinville", "sagepond", "sageville","columbiaville_25g","columbiaville_100g"], "%s nic not support fdir vxlan filter" % self.nic) self.pmdout.start_testpmd("%s" % self.cores, "--pkt-filter-mode=perfect-tunnel --disable-rss --rxq=%d --txq=%d" % (MAX_QUEUE+1, MAX_QUEUE+1)) self.dut.send_expect("set fwd rxonly", "testpmd> ", 120) @@ -1537,7 +1537,7 @@ class TestGeneric_flow_api(TestCase): """ only supported by i40e """ - self.verify(self.nic in ["fortville_eagle", "fortville_spirit", + self.verify(self.nic in ["fortville_eagle", "fortville_spirit","columbiaville_25g","columbiaville_100g", "fortville_spirit_single", "fortpark_TLV"], "%s nic not support tunnel vxlan filter" % self.nic) @@ -1601,7 +1601,7 @@ class TestGeneric_flow_api(TestCase): """ only supported by i40e """ - self.verify(self.nic in ["fortville_eagle", "fortville_spirit", + self.verify(self.nic in ["fortville_eagle", "fortville_spirit","columbiaville_25g","columbiaville_100g", "fortville_spirit_single", "fortpark_TLV"], "%s nic not support tunnel nvgre filter" % self.nic) -- 1.8.3.1