From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 7DFC85F2B for ; Wed, 17 Oct 2018 09:30:04 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 17 Oct 2018 00:30:03 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.54,391,1534834800"; d="scan'208";a="273103806" Received: from dts-maintain.sh.intel.com (HELO [10.67.119.110]) ([10.67.119.110]) by fmsmga006.fm.intel.com with ESMTP; 17 Oct 2018 00:30:01 -0700 To: wenjieli , dts@dpdk.org References: <1539743875-9486-1-git-send-email-wenjiex.a.li@intel.com> From: Lijuan Tu Message-ID: <0e2d3ab6-21a5-ce83-9b5e-3527247e407b@intel.com> Date: Wed, 17 Oct 2018 23:58:01 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <1539743875-9486-1-git-send-email-wenjiex.a.li@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US Subject: Re: [dts] [PATCH V1 1/7] tests/ipgre: 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 07:30:04 -0000 Applied, thanks On 2018年10月17日 10:37, wenjieli wrote: > 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/ipgre to fit this changement. > > Signed-off-by: wenjieli > --- > tests/TestSuite_ipgre.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/tests/TestSuite_ipgre.py b/tests/TestSuite_ipgre.py > index 2dccb9c..564ffb6 100644 > --- a/tests/TestSuite_ipgre.py > +++ b/tests/TestSuite_ipgre.py > @@ -318,7 +318,7 @@ class TestIpgre(TestCase): > self.dut.send_expect("csum set sctp hw 0", "testpmd>") > self.dut.send_expect("csum set outer-ip hw 0", "testpmd>") > self.dut.send_expect("csum set tcp hw 0", "testpmd>") > - self.dut.send_expect("csum parse_tunnel on 0", "testpmd>") > + self.dut.send_expect("csum parse-tunnel on 0", "testpmd>") > self.dut.send_expect("port start all", "testpmd>") > self.dut.send_expect("start", "testpmd>") >