From patchwork Wed Sep 2 08:59:09 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yu Jiang X-Patchwork-Id: 76302 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1E5B3A04B7; Wed, 2 Sep 2020 10:58:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E8A891C0CF; Wed, 2 Sep 2020 10:58:53 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 280391C0C0 for ; Wed, 2 Sep 2020 10:58:52 +0200 (CEST) IronPort-SDR: RtqkPfk5IdV8XCFouazulIliGUz16RLnAuTSpW0V0a1fL98F8AZwjAPVZ1NSxNvySQgFI6ttwd XqIew9FuY0PA== X-IronPort-AV: E=McAfee;i="6000,8403,9731"; a="145039205" X-IronPort-AV: E=Sophos;i="5.76,381,1592895600"; d="scan'208";a="145039205" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 02 Sep 2020 01:58:48 -0700 IronPort-SDR: M3+Aya3NyvZovsQ/hNlVbwo2gc+3MYgS9XeL7tdO8Cvb3XJeZlOL6T0c1npV9ft3CzfXKgRy/G cOwZTR6AT9jg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,381,1592895600"; d="scan'208";a="315050045" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 02 Sep 2020 01:58:46 -0700 From: "Jiang, YuX" To: dts@dpdk.org Cc: "Jiang,yu" , Jiang@dpdk.org Date: Wed, 2 Sep 2020 16:59:09 +0800 Message-Id: <20200902085909.1667-1-yux.jiang@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_iavf_fdir: fix syntax errors 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: "Jiang,yu" Fix syntax errors: there are 4 invalid black spaces Signed-off-by: Jiang,yu --- tests/TestSuite_iavf_fdir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_iavf_fdir.py b/tests/TestSuite_iavf_fdir.py index eaea13f..63d8714 100644 --- a/tests/TestSuite_iavf_fdir.py +++ b/tests/TestSuite_iavf_fdir.py @@ -4091,7 +4091,7 @@ class TestIAVFFdir(TestCase): rule_ipv4_tcp_ipv6_udp = [ "flow create 0 ingress pattern eth / ipv4 src is 192.168.0.20 dst is 192.168.0.21 / tcp src is 22 dst is 23 / end actions queue index 1 / mark id 0 / end", - "flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 src is 2001::2 hop is 2 tc is 1 / udp src is 22 dst is 23 / end actions queue index 2 / mark id 2 / e nd" + "flow create 0 ingress pattern eth / ipv6 dst is CDCD:910A:2222:5498:8475:1111:3900:2020 src is 2001::2 hop is 2 tc is 1 / udp src is 22 dst is 23 / end actions queue index 2 / mark id 2 / end" ] # create rules self.create_fdir_rule(rule_ipv4_tcp_ipv6_udp, check_stats=True)