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 C040EA00BE; Wed, 30 Oct 2019 08:35:35 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 86B2E1BED2; Wed, 30 Oct 2019 08:35:35 +0100 (CET) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 4F3D81BED2 for ; Wed, 30 Oct 2019 08:35:33 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 30 Oct 2019 00:35:31 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,246,1569308400"; d="scan'208";a="211272715" Received: from unknown (HELO dpdk-xiaoqimai-tester.sh.intel.com) ([10.240.179.35]) by fmsmga001.fm.intel.com with ESMTP; 30 Oct 2019 00:35:30 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Wed, 30 Oct 2019 15:35:29 -0400 Message-Id: <1572464129-77412-1-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V2]tests/TestSuite_fortville_rss_granularity_config.py: update dpdk commandline in dts 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" dpdk commandline has been changed from 'vlan set qinq on 0' to 'vlan set extend on 0' in dpdk 2a0b41984c7ee304a86f0799b1388d7674694296 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..7f881e9 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 extend 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