From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 5F8684F9B for ; Wed, 17 Oct 2018 04:35:26 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga106.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 16 Oct 2018 19:35:26 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,389,1534834800"; d="scan'208";a="100069135" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by orsmga001.jf.intel.com with ESMTP; 16 Oct 2018 19:35:25 -0700 From: wenjieli To: dts@dpdk.org Cc: wenjieli Date: Wed, 17 Oct 2018 10:37:55 +0800 Message-Id: <1539743875-9486-7-git-send-email-wenjiex.a.li@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1539743875-9486-1-git-send-email-wenjiex.a.li@intel.com> References: <1539743875-9486-1-git-send-email-wenjiex.a.li@intel.com> Subject: [dts] [PATCH V1 7/7] tests/tso: change parse_tunnel to parse-tunnel 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: , X-List-Received-Date: Wed, 17 Oct 2018 02:35:26 -0000 In dpdk commit 5b48cd159536b70a943ae8246c2f717183818b19: app/testpmd: fix csum parse-tunnel command invocation Based on the documentation and help print, the sub command for csum suppose to be "parse-tunnel" instead of "parse_tunnel" in app/test-pmd/cmdline.c. Update tests/tso to fit this changement. Signed-off-by: wenjieli --- tests/TestSuite_tso.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tests/TestSuite_tso.py b/tests/TestSuite_tso.py index 0a9d66c..8dc84c2 100644 --- a/tests/TestSuite_tso.py +++ b/tests/TestSuite_tso.py @@ -165,14 +165,14 @@ class TestTSO(TestCase): self.dut.send_expect("csum set tcp hw %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set sctp hw %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set outer-ip hw %d" % self.dut_ports[0], "testpmd> ", 120) - self.dut.send_expect("csum parse_tunnel on %d" % self.dut_ports[0], "testpmd> ", 120) + self.dut.send_expect("csum parse-tunnel on %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set ip hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set udp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set tcp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set sctp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set outer-ip hw %d" % self.dut_ports[1], "testpmd> ", 120) - self.dut.send_expect("csum parse_tunnel on %d" % self.dut_ports[1], "testpmd> ", 120) + self.dut.send_expect("csum parse-tunnel on %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("tso set 800 %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("set fwd csum", "testpmd> ", 120) @@ -231,14 +231,14 @@ class TestTSO(TestCase): self.dut.send_expect("csum set tcp hw %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set sctp hw %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set outer-ip hw %d" % self.dut_ports[0], "testpmd> ", 120) - self.dut.send_expect("csum parse_tunnel on %d" % self.dut_ports[0], "testpmd> ", 120) + self.dut.send_expect("csum parse-tunnel on %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set ip hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set udp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set tcp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set sctp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set outer-ip hw %d" % self.dut_ports[1], "testpmd> ", 120) - self.dut.send_expect("csum parse_tunnel on %d" % self.dut_ports[1], "testpmd> ", 120) + self.dut.send_expect("csum parse-tunnel on %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("tso set 800 %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("set fwd csum", "testpmd> ", 120) @@ -300,13 +300,13 @@ class TestTSO(TestCase): self.dut.send_expect("csum set tcp hw %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set sctp hw %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set outer-ip hw %d" % self.dut_ports[0], "testpmd> ", 120) - self.dut.send_expect("csum parse_tunnel on %d" % self.dut_ports[0], "testpmd> ", 120) + self.dut.send_expect("csum parse-tunnel on %d" % self.dut_ports[0], "testpmd> ", 120) self.dut.send_expect("csum set ip hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set udp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set tcp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set sctp hw %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("csum set outer-ip hw %d" % self.dut_ports[1], "testpmd> ", 120) - self.dut.send_expect("csum parse_tunnel on %d" % self.dut_ports[1], "testpmd> ", 120) + self.dut.send_expect("csum parse-tunnel on %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("tso set 800 %d" % self.dut_ports[1], "testpmd> ", 120) self.dut.send_expect("set fwd csum", "testpmd> ", 120) self.dut.send_expect("start", "testpmd> ") -- 2.17.2