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 68D56A0613 for ; Tue, 24 Sep 2019 09:05:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1E3362C2B; Tue, 24 Sep 2019 09:05:11 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by dpdk.org (Postfix) with ESMTP id 847E62C0C for ; Tue, 24 Sep 2019 09:05:09 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Sep 2019 00:05:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.64,543,1559545200"; d="scan'208";a="213590797" Received: from dpdk-lihong-ub1604.sh.intel.com ([10.67.119.134]) by fmsmga004.fm.intel.com with ESMTP; 24 Sep 2019 00:05:07 -0700 From: lihong To: dts@dpdk.org Cc: lihong Date: Tue, 24 Sep 2019 07:40:26 +0800 Message-Id: <1569282026-25104-1-git-send-email-lihongx.ma@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH V1] tests/vm2vm_virtio_net_perf: fix issue of position params 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: lihong --- tests/TestSuite_vm2vm_virtio_net_perf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py index d250991..f94b4a3 100644 --- a/tests/TestSuite_vm2vm_virtio_net_perf.py +++ b/tests/TestSuite_vm2vm_virtio_net_perf.py @@ -89,8 +89,8 @@ class TestVM2VMVirtioNetPerf(TestCase): "-- -i --nb-cores=1 --txd=1024 --rxd=1024" self.command_line = self.command_line % ( - self.coremask, self.memory_channel, self.base_dir, self.base_dir, - zerocopy_arg, zerocopy_arg) + self.coremask, self.memory_channel, self.base_dir, + zerocopy_arg, self.base_dir, zerocopy_arg) self.vhost.send_expect(self.command_line, "testpmd> ", 30) self.vhost.send_expect("start", "testpmd> ", 30) -- 2.7.4