From patchwork Wed Oct 13 05:56:47 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Jiale, SongX" X-Patchwork-Id: 101300 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1E993A0C4D; Wed, 13 Oct 2021 07:43:23 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E09C040150; Wed, 13 Oct 2021 07:43:22 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by mails.dpdk.org (Postfix) with ESMTP id 30E8840142 for ; Wed, 13 Oct 2021 07:43:21 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10135"; a="313552767" X-IronPort-AV: E=Sophos;i="5.85,369,1624345200"; d="scan'208";a="313552767" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2021 22:43:14 -0700 X-IronPort-AV: E=Sophos;i="5.85,369,1624345200"; d="scan'208";a="441514715" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by orsmga006-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Oct 2021 22:43:13 -0700 From: Jiale Song To: dts@dpdk.org Cc: Jiale Song Date: Wed, 13 Oct 2021 13:56:47 +0800 Message-Id: <1634104607-93598-1-git-send-email-songx.jiale@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] tests/iavf_fdir_gtpogre: delete a rule X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" this rule has been successfully created in ICE GTP over GRE Package Signed-off-by: Jiale Song --- test_plans/iavf_fdir_gtpogre_test_plan.rst | 2 -- tests/TestSuite_iavf_fdir_gtpogre.py | 1 - 2 files changed, 3 deletions(-) mode change 100644 => 100755 test_plans/iavf_fdir_gtpogre_test_plan.rst mode change 100644 => 100755 tests/TestSuite_iavf_fdir_gtpogre.py diff --git a/test_plans/iavf_fdir_gtpogre_test_plan.rst b/test_plans/iavf_fdir_gtpogre_test_plan.rst old mode 100644 new mode 100755 index 29a4b8b..8e9e187 --- a/test_plans/iavf_fdir_gtpogre_test_plan.rst +++ b/test_plans/iavf_fdir_gtpogre_test_plan.rst @@ -635,8 +635,6 @@ negative test case iavf_flow_create(): Failed to create flow port_flow_complain(): Caught PMD error type 2 (flow rule (handle)): Failed to create parser engine.: Invalid argument - testpmd> flow create 0 ingress pattern eth / ipv4 src is 1.1.2.4 dst is 1.1.2.5 / gre / ipv6 / udp / gtpu teid is 0x12 / gtp_psc pdu_t is 1 qfi is 0x100 / end actions rss queues 4 5 end / mark id 23 / end - Bad arguments testpmd> flow create 0 ingress pattern eth / ipv4 src is 1.1.2.4 dst is 1.1.2.5 / gre / ipv4 / udp / gtpu teid is 0x100000000 / gtp_psc pdu_t is 1 qfi is 0x3 / end actions drop / end Bad arguments diff --git a/tests/TestSuite_iavf_fdir_gtpogre.py b/tests/TestSuite_iavf_fdir_gtpogre.py old mode 100644 new mode 100755 index 1e10d58..f9915a3 --- a/tests/TestSuite_iavf_fdir_gtpogre.py +++ b/tests/TestSuite_iavf_fdir_gtpogre.py @@ -2117,7 +2117,6 @@ class TestCvlIavfGTPoGREFDIR(TestCase): 'flow create 0 ingress pattern eth / ipv4 / gre / ipv4 / udp dst is 13 / gtpu / ipv4 src is 1.1.2.4 dst is 1.1.2.5 / end actions queue index 33 / mark id 13 / end', 'flow create 0 ingress pattern eth / ipv6 / gre / ipv4 / udp / gtpu / gtp_psc pdu_t is a/ ipv4 src is 1.1.2.4 dst is 1.1.2.5 / end actions mark / rss / end', 'flow create 0 ingress pattern eth / ipv4 / gre / ipv6 / udp / gtpu / gtp_psc pdu_t is 2 / ipv4 src is 1.1.2.4 dst is 1.1.2.5 / tcp src is 13 dst is 23 / end actions queue index 3 / mark id 13 / end', - 'flow create 0 ingress pattern eth / ipv4 src is 1.1.2.4 dst is 1.1.2.5 / gre / ipv6 / udp / gtpu teid is 0x12 / gtp_psc pdu_t is 1 qfi is 0x100 / end actions rss queues 4 5 end / mark id 23 / end', 'flow create 0 ingress pattern eth / ipv4 src is 1.1.2.4 dst is 1.1.2.5 / gre / ipv4 / udp / gtpu teid is 0x100000000 / gtp_psc pdu_t is 1 qfi is 0x3 / end actions drop / end', ] self.launch_testpmd(param_fdir=True)