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 1A853A0350; Mon, 29 Jun 2020 04:06:53 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0D5A31B5E1; Mon, 29 Jun 2020 04:06:53 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 567281023 for ; Mon, 29 Jun 2020 04:06:51 +0200 (CEST) IronPort-SDR: nliErG0M2pBmmANIbLy6/wycOSis8DLBVCaL1iK+EO3wVCeDciTHUMDE34CQJVldVQudtxActo 41wDEymF797A== X-IronPort-AV: E=McAfee;i="6000,8403,9666"; a="145889974" X-IronPort-AV: E=Sophos;i="5.75,293,1589266800"; d="scan'208";a="145889974" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Jun 2020 19:06:50 -0700 IronPort-SDR: QDLyC1DGoW1IZjbi3dGBe/UhHuDDukRiEAo4YEDPoLDU1oPascIce6ZLSIJbJV5QZiNrErsSiW 8OpsugFMtiqA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,293,1589266800"; d="scan'208";a="294741024" Received: from unknown (HELO xqm-virtio_tester.localdomain) ([10.240.183.52]) by orsmga002.jf.intel.com with ESMTP; 28 Jun 2020 19:06:49 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Mon, 29 Jun 2020 09:58:32 +0800 Message-Id: <1593395913-21134-3-git-send-email-qimaix.xiao@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1593395913-21134-1-git-send-email-qimaix.xiao@intel.com> References: <1593395913-21134-1-git-send-email-qimaix.xiao@intel.com> Subject: [dts] [PATCH V1 2/3]virtio_pvp_regression: fix typo 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" Signed-off-by: Xiao Qimai --- tests/TestSuite_virtio_pvp_regression.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_virtio_pvp_regression.py b/tests/TestSuite_virtio_pvp_regression.py index d9e0d30..225fc35 100644 --- a/tests/TestSuite_virtio_pvp_regression.py +++ b/tests/TestSuite_virtio_pvp_regression.py @@ -259,7 +259,7 @@ class TestVirtioPVPRegression(TestCase): self.vhost.send_expect("set fwd mac", "testpmd> ", 30) self.vhost.send_expect("start", "testpmd> ", 30) - def start_testpmd_in_vm(self, vritio_path): + def start_testpmd_in_vm(self, virtio_path): """ Start testpmd in vm """ @@ -268,7 +268,7 @@ class TestVirtioPVPRegression(TestCase): 'please config it in %s.cfg' % self.suite_name) if self.vm_dut is not None: opt_args = '' - if vritio_path in ['mergeable', 'normal']: + if virtio_path in ['mergeable', 'normal']: opt_args = '--enable-hw-vlan-strip' vm_testpmd = self.dut.target + "/app/testpmd -c 0x7 -n 4 " \ "-- -i %s --nb-cores=%s " \ -- 1.8.3.1