From patchwork Tue Sep 8 07:18:19 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhou, JunX W" X-Patchwork-Id: 76867 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id E54F5A04AA; Tue, 8 Sep 2020 09:30:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DCF591C125; Tue, 8 Sep 2020 09:30:08 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 04C081BE0C for ; Tue, 8 Sep 2020 09:30:06 +0200 (CEST) IronPort-SDR: jLQhIoffPYv6JX3vdavDgVR8ksoW8qLFEOWJX/eTL5pgsS2s0ULyA2Z0WUSXORNMZYkJT6vmG4 fqqw4xcoTd5A== X-IronPort-AV: E=McAfee;i="6000,8403,9737"; a="219646652" X-IronPort-AV: E=Sophos;i="5.76,404,1592895600"; d="scan'208";a="219646652" 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:06 -0700 IronPort-SDR: dTwEzACc+5QTZjbhCbhTEC4EYsCBesJjCAkukZHFX2F/mWKmHYdatyFEOZW+aFgSRlHfo3HQJ7 ZutsIZNCLigQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,404,1592895600"; d="scan'208";a="377432873" Received: from unknown (HELO localhost.localdomain) ([10.240.183.52]) by orsmga001.jf.intel.com with ESMTP; 08 Sep 2020 00:30:05 -0700 From: "Zhou, Jun" To: dts@dpdk.org Cc: Zhou jun Date: Tue, 8 Sep 2020 07:18:19 +0000 Message-Id: <20200908071825.118583-33-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 Subject: [dts] [dts 32/38] tests/TestSuite_virtio_pvp_regression.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_virtio_pvp_regression.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_virtio_pvp_regression.py b/tests/TestSuite_virtio_pvp_regression.py index 942c924..80b4752 100644 --- a/tests/TestSuite_virtio_pvp_regression.py +++ b/tests/TestSuite_virtio_pvp_regression.py @@ -92,6 +92,7 @@ class TestVirtioPVPRegression(TestCase): # create an instance to set stream field setting self.pktgen_helper = PacketGeneratorHelper() self.base_dir = self.dut.base_dir.replace('~', '/root') + self.app_testpmd_path = self.dut.apps_name['test-pmd'] def set_up(self): """ @@ -250,7 +251,7 @@ class TestVirtioPVPRegression(TestCase): """ Launch the vhost testpmd """ - testcmd = self.dut.target + "/app/testpmd " + testcmd = self.app_testpmd_path + " " vdev = [r"'eth_vhost0,iface=%s/vhost-net,queues=%d,client=1'" % (self.base_dir, self.queues_number)] eal_params = self.dut.create_eal_parameters(cores=self.cores, prefix='vhost', ports=[self.pci_info], vdevs=vdev) para = " -- -i --nb-cores=%d --rxq=%d --txq=%d --txd=1024 --rxd=1024" % (self.queues_number, self.queues_number, self.queues_number) @@ -277,7 +278,7 @@ class TestVirtioPVPRegression(TestCase): opt_args = '' if virtio_path in ['mergeable', 'normal']: opt_args = '--enable-hw-vlan-strip' - vm_testpmd = self.dut.target + "/app/testpmd -c 0x7 -n 4 " \ + vm_testpmd = self.app_testpmd_path + " -c 0x7 -n 4 " \ "-- -i %s --nb-cores=%s " \ "--rxq=%s --txq=%s --txd=1024 --rxd=1024" vm_testpmd = vm_testpmd % (opt_args, self.queues_number,