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 06207A00BE; Wed, 30 Oct 2019 04:25:45 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id B980A1BEA1; Wed, 30 Oct 2019 04:25:45 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 3922F1BE96 for ; Wed, 30 Oct 2019 04:25:44 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 29 Oct 2019 20:25:43 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,245,1569308400"; d="scan'208";a="230301299" Received: from unknown (HELO dpdk-xiaoqimai-tester.sh.intel.com) ([10.240.179.35]) by fmsmga002.fm.intel.com with ESMTP; 29 Oct 2019 20:25:41 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Wed, 30 Oct 2019 11:25:41 -0400 Message-Id: <1572449141-26679-1-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1]tests/TestSuite_fortville_rss_granularity_config: update testpmd command in dpdk_2a0b41984c7 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" change testpmd cmd "vlan set qinq on 0" to "vlan set qinq_strip on 0" in dpdk-2a0b41984c7 Signed-off-by: Xiao Qimai --- tests/TestSuite_fortville_rss_granularity_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_fortville_rss_granularity_config.py b/tests/TestSuite_fortville_rss_granularity_config.py index e827df2..094107a 100644 --- a/tests/TestSuite_fortville_rss_granularity_config.py +++ b/tests/TestSuite_fortville_rss_granularity_config.py @@ -505,7 +505,7 @@ class TestFortvilleRssGranularityConfig(TestCase): self.dut.send_expect("set fwd rxonly", "testpmd> ") self.dut.send_expect("port stop all", "testpmd> ") - self.dut.send_expect("vlan set qinq on 0", "testpmd> ") + self.dut.send_expect("vlan set qinq_strip on 0", "testpmd> ") self.dut.send_expect( "set_hash_global_config 0 toeplitz l2_payload enable", "testpmd> ") self.dut.send_expect("port start all", "testpmd> ") -- 1.8.3.1