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 35F3BA0522; Mon, 29 Jun 2020 04:06:51 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id D8C461B6B4; Mon, 29 Jun 2020 04:06:50 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 02F4A1023 for ; Mon, 29 Jun 2020 04:06:49 +0200 (CEST) IronPort-SDR: dtAO008mnl5XMgCHO2hiF/ZkWCHI4r2omFJJGo92ACgTp1iSDRZoKizYPCdMwNSDhZrycjNzJP INPo/3w5cppA== X-IronPort-AV: E=McAfee;i="6000,8403,9666"; a="145889972" X-IronPort-AV: E=Sophos;i="5.75,293,1589266800"; d="scan'208";a="145889972" 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:49 -0700 IronPort-SDR: Mv3CuTRrS+bHre3lHlXskd9YSPEdnKp1AS4t3qXIXfyRV8azjtQbN3JJ4SIdEvC2MWUPvp+xZC Z+ukK888gAWQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.75,293,1589266800"; d="scan'208";a="294741021" Received: from unknown (HELO xqm-virtio_tester.localdomain) ([10.240.183.52]) by orsmga002.jf.intel.com with ESMTP; 28 Jun 2020 19:06:48 -0700 From: Xiao Qimai To: dts@dpdk.org Cc: Xiao Qimai Date: Mon, 29 Jun 2020 09:58:31 +0800 Message-Id: <1593395913-21134-2-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 1/3]perf_vm2vm_virtio_net_perf: 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_perf_vm2vm_virtio_net_perf.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/TestSuite_perf_vm2vm_virtio_net_perf.py b/tests/TestSuite_perf_vm2vm_virtio_net_perf.py index 532cdf7..cd57006 100644 --- a/tests/TestSuite_perf_vm2vm_virtio_net_perf.py +++ b/tests/TestSuite_perf_vm2vm_virtio_net_perf.py @@ -62,8 +62,8 @@ class TestPerfVM2VMVirtioNetPerf(TestCase): self.vm_num = 2 self.virtio_ip1 = "1.1.1.2" self.virtio_ip2 = "1.1.1.3" - self.vritio_mac1 = "52:54:00:00:00:01" - self.vritio_mac2 = "52:54:00:00:00:02" + self.virtio_mac1 = "52:54:00:00:00:01" + self.virtio_mac2 = "52:54:00:00:00:02" self.base_dir = self.dut.base_dir.replace('~', '/root') self.random_string = string.ascii_letters + string.digits socket_num = len(set([int(core['socket']) for core in self.dut.cores])) @@ -212,8 +212,8 @@ class TestPerfVM2VMVirtioNetPerf(TestCase): vm2_intf = self.vm_dut[1].ports_info[0]['intf'] self.vm_dut[0].send_expect("ifconfig %s %s" % (vm1_intf, self.virtio_ip1), "#", 10) self.vm_dut[1].send_expect("ifconfig %s %s" % (vm2_intf, self.virtio_ip2), "#", 10) - self.vm_dut[0].send_expect("arp -s %s %s" % (self.virtio_ip2, self.vritio_mac2), "#", 10) - self.vm_dut[1].send_expect("arp -s %s %s" % (self.virtio_ip1, self.vritio_mac1), "#", 10) + self.vm_dut[0].send_expect("arp -s %s %s" % (self.virtio_ip2, self.virtio_mac2), "#", 10) + self.vm_dut[1].send_expect("arp -s %s %s" % (self.virtio_ip1, self.virtio_mac1), "#", 10) def prepare_test_env(self, zerocopy, path_mode, packed_mode=False): """ -- 1.8.3.1