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 4A6A5A04AA; Tue, 8 Sep 2020 09:30:11 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 438CB1C12C; Tue, 8 Sep 2020 09:30:11 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id E655B1C127 for ; Tue, 8 Sep 2020 09:30:09 +0200 (CEST) IronPort-SDR: SWjZY5TnBK8dYT+CoYZokLpAfUAOhAIHdAuRAmJvahv77XcO2kSE1/LvX0h1TjyevLZAbBCAlS N+O4ztdDBgvg== X-IronPort-AV: E=McAfee;i="6000,8403,9737"; a="219646658" X-IronPort-AV: E=Sophos;i="5.76,404,1592895600"; d="scan'208";a="219646658" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 08 Sep 2020 00:30:09 -0700 IronPort-SDR: 32s4Z5CjVleRdieS+icgF2MXuWVJ+2cjAH4lo4dnKvpLwWIMF+3dKZ4m5zUCAOZHuuQmS3Macj Msfvvzv3yBaQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,404,1592895600"; d="scan'208";a="377432898" Received: from unknown (HELO localhost.localdomain) ([10.240.183.52]) by orsmga001.jf.intel.com with ESMTP; 08 Sep 2020 00:30:08 -0700 From: "Zhou, Jun" To: dts@dpdk.org Cc: Zhou jun Date: Tue, 8 Sep 2020 07:18:21 +0000 Message-Id: <20200908071825.118583-35-junx.w.zhou@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20200908071825.118583-1-junx.w.zhou@intel.com> References: <20200908071825.118583-1-junx.w.zhou@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [dts 34/38] tests/TestSuite_vm2vm_virtio_net_perf.py: adapt to support both meson and makefile build 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" From: Zhou jun Signed-off-by: Zhou jun --- tests/TestSuite_vm2vm_virtio_net_perf.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_vm2vm_virtio_net_perf.py b/tests/TestSuite_vm2vm_virtio_net_perf.py index 123685f..f1afb4f 100644 --- a/tests/TestSuite_vm2vm_virtio_net_perf.py +++ b/tests/TestSuite_vm2vm_virtio_net_perf.py @@ -65,6 +65,7 @@ class TestVM2VMVirtioNetPerf(TestCase): self.socket_mem = ','.join(['2048']*socket_num) self.vhost = self.dut.new_session(suite="vhost") self.pmd_vhost = PmdOutput(self.dut, self.vhost) + self.app_testpmd_path = self.dut.apps_name['test-pmd'] def set_up(self): """ @@ -84,7 +85,7 @@ class TestVM2VMVirtioNetPerf(TestCase): zerocopy_arg = ",dequeue-zero-copy=1" else: zerocopy_arg = "" - testcmd = self.dut.target + "/app/testpmd " + testcmd = self.app_testpmd_path + " " vdev1 = "--vdev 'net_vhost0,iface=%s/vhost-net0,queues=1%s' " % (self.base_dir, zerocopy_arg) vdev2 = "--vdev 'net_vhost1,iface=%s/vhost-net1,queues=1%s' " % (self.base_dir, zerocopy_arg) eal_params = self.dut.create_eal_parameters(cores=self.cores_list, prefix='vhost', no_pci=True) -- 1.8.3.1