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 B0465A04B6; Thu, 17 Sep 2020 03:09:05 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A360E1D426; Thu, 17 Sep 2020 03:09:05 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id E1D481D40E for ; Thu, 17 Sep 2020 03:09:03 +0200 (CEST) IronPort-SDR: ETh7FGIAlWGFyZBExnHFFvxJFQO1VJVCVkuftwcWq2AgI65vUfiIku8PEB5+7DOLAm6c8929Wn 2f1pt0z3wZBw== X-IronPort-AV: E=McAfee;i="6000,8403,9746"; a="160529041" X-IronPort-AV: E=Sophos;i="5.76,434,1592895600"; d="scan'208";a="160529041" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Sep 2020 18:09:02 -0700 IronPort-SDR: dNbEF33vy8AGU3UmkMz0ZTmYusMhfOHxUFkP2RPlDCH+NcUOO2F5xKhJth8luGdXC7esVt2Vof vc24Qq7r+k7Q== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,434,1592895600"; d="scan'208";a="331931518" Received: from dpdk-moyufen06.sh.intel.com ([10.67.116.208]) by fmsmga004.fm.intel.com with ESMTP; 16 Sep 2020 18:08:56 -0700 From: yufengmx To: dts@dpdk.org, lei.a.yao@intel.com Cc: yufengmx Date: Thu, 17 Sep 2020 09:05:12 +0800 Message-Id: <20200917010513.15783-8-yufengx.mo@intel.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20200917010513.15783-1-yufengx.mo@intel.com> References: <20200917010513.15783-1-yufengx.mo@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V2 7/8] malicious_driver_event_indication: support meson 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" support meson build. Signed-off-by: yufengmx --- tests/TestSuite_malicious_driver_event_indication.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_malicious_driver_event_indication.py b/tests/TestSuite_malicious_driver_event_indication.py index f297ab9..44859ab 100644 --- a/tests/TestSuite_malicious_driver_event_indication.py +++ b/tests/TestSuite_malicious_driver_event_indication.py @@ -124,8 +124,8 @@ class TestSuiteMaliciousDrvEventIndication(TestCase): self.vf_ports_info = None def init_pf_testpmd(self): - self.pf_testpmd = "{}/{}/app/testpmd".format( - self.target_dir, self.dut.target) + self.pf_testpmd = os.path.join(self.target_dir, + self.dut.apps_name['test-pmd']) def start_pf_testpmd(self): core_mask = utils.create_mask(self.pf_pmd_cores) -- 2.21.0