From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 1A243A034F; Mon, 29 Mar 2021 04:26:56 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 1139F406B4; Mon, 29 Mar 2021 04:26:56 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id D385C40042 for ; Mon, 29 Mar 2021 04:26:54 +0200 (CEST) IronPort-SDR: 4h0xyJ6lbUiCoPvimxf7AYMbQlwbmTF+RUMi3pSGqvDPtEw2iTALSIgEEUrxbvc3h0pKtjdb3p 1ZNylnzEgFeg== X-IronPort-AV: E=McAfee;i="6000,8403,9937"; a="188195801" X-IronPort-AV: E=Sophos;i="5.81,285,1610438400"; d="scan'208";a="188195801" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2021 19:26:53 -0700 IronPort-SDR: gk91/BH62B44RYfdFKbanwJumuOOR0gPTtg4Do+NIpffFjrYi3E0OVkLI6N9WuWI1zrmTcGr62 M9NgC01FdCjA== X-IronPort-AV: E=Sophos;i="5.81,285,1610438400"; d="scan'208";a="410853262" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Mar 2021 19:26:52 -0700 From: Ling Wei To: dts@dpdk.org Cc: Ling Wei Date: Mon, 29 Mar 2021 10:25:39 +0800 Message-Id: <20210329022539.21027-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1 1/3] tests/vhost_user_interrupt: delete invalid parameter X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" Delete invalid parameter 'ports=[self.pci_info]' because of use 'no_pci=True' means not use any pci. Signed-off-by: Ling Wei --- tests/TestSuite_vhost_user_interrupt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vhost_user_interrupt.py b/tests/TestSuite_vhost_user_interrupt.py index 53f407fa..296d2283 100644 --- a/tests/TestSuite_vhost_user_interrupt.py +++ b/tests/TestSuite_vhost_user_interrupt.py @@ -177,7 +177,7 @@ class TestVhostUserInterrupt(TestCase): eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, ports=self.cbdma_dev_infos[0:4], vdevs=[vdev]) else: vdev = 'net_vhost0,iface=vhost-net,queues=%d,client=1' % self.queues - eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True, ports=[self.pci_info], vdevs=[vdev]) + eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True, vdevs=[vdev]) para = " -- -p 0x1 --parse-ptype 1 --config '%s' --interrupt-only" % config_info command_line_client = example_cmd + eal_params + para self.vhost.get_session_before(timeout=2) -- 2.25.1