From patchwork Fri Sep 11 02:57:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 77305 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 0255DA04B6; Fri, 11 Sep 2020 04:59:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id E29A31B9B7; Fri, 11 Sep 2020 04:59:53 +0200 (CEST) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id F4029E07 for ; Fri, 11 Sep 2020 04:59:51 +0200 (CEST) IronPort-SDR: xbZcp2hPjC2rulq2QmVglV+kSbmxP887eVjqxM/j5tJ70yzVHTuC6WK3k14Ld0c6QypLOTRXLg HvJLyf+wse0g== X-IronPort-AV: E=McAfee;i="6000,8403,9740"; a="222881661" X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="222881661" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2020 19:59:51 -0700 IronPort-SDR: LBmtEYCFxyIH0wDlgt26UpMLA/AYr4dWgrQnhMjw9vKnIsP2B+2TVR7BCs8KF8zw9e/+15VdGS ekoO/LBPu37w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="318135470" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 10 Sep 2020 19:59:50 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Fri, 11 Sep 2020 10:57:54 +0800 Message-Id: <20200911025758.9246-2-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200911025758.9246-1-weix.xie@intel.com> References: <20200911025758.9246-1-weix.xie@intel.com> Subject: [dts] [PATCH V1 1/5] tests/TestSuite_iavf_package_driver_error_handle:support meson build method 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: Xie wei --- tests/TestSuite_iavf_package_driver_error_handle.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_iavf_package_driver_error_handle.py b/tests/TestSuite_iavf_package_driver_error_handle.py index a59b933..d155afc 100644 --- a/tests/TestSuite_iavf_package_driver_error_handle.py +++ b/tests/TestSuite_iavf_package_driver_error_handle.py @@ -247,7 +247,7 @@ class Testiavf_package_and_driver_check(TestCase): for port in self.sriov_vfs_port: port.bind_driver('vfio-pci') - testpmdcmd ='./x86_64-native-linuxapp-gcc/app/testpmd -l 6-9 -n 4 --file-prefix=vf -- -i --rxq=4 --txq=4 --nb-cores=2' + testpmdcmd = self.dut.apps_name['test-pmd'] + "-l 6-9 -n 4 --file-prefix=vf -- -i --rxq=4 --txq=4 --nb-cores=2" self.dut_testpmd.execute_cmd(testpmdcmd) out=self.dut_testpmd.execute_cmd('flow create 0 ingress pattern eth / ipv4 / end actions rss types l3-dst-only end key_len 0 queues end / end') self.verify("iavf_flow_create(): Failed to create flow" in out, "There should be '%s' in out: %s" % ("iavf_flow_create(): Failed to create flow", out))