From patchwork Mon Dec 21 06:23:18 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 85583 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 98248A09EF; Mon, 21 Dec 2020 07:20:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 497C0CB83; Mon, 21 Dec 2020 07:20:54 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 2DDFECB7F for ; Mon, 21 Dec 2020 07:20:51 +0100 (CET) IronPort-SDR: QyWkzaSAlvPBh5niF0RV/pGxH0e1cdeORbVfobQVBnEh+Z5rKNwKPF89MH7vJdwoj5+qh4wskr Ech+56/nRUug== X-IronPort-AV: E=McAfee;i="6000,8403,9841"; a="163409576" X-IronPort-AV: E=Sophos;i="5.78,436,1599548400"; d="scan'208";a="163409576" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Dec 2020 22:20:47 -0800 IronPort-SDR: 8gH3CWby0rhfh6V3EIN3/adpY6tUj2GG89ylA03+29BjA26bklfhj5EExY6pbQDFV3QECUldmA eOevYe4x0b+Q== X-IronPort-AV: E=Sophos;i="5.78,436,1599548400"; d="scan'208";a="563228177" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 20 Dec 2020 22:20:45 -0800 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Mon, 21 Dec 2020 14:23:18 +0800 Message-Id: <20201221062318.2795-1-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_cvl_dcf_date_path:discard the -w parameter 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" discard the -w parameter Signed-off-by: Xie wei Tested-by: Xie,WeiX < weix.xie@intel.com> --- tests/TestSuite_cvl_dcf_date_path.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_cvl_dcf_date_path.py b/tests/TestSuite_cvl_dcf_date_path.py index 5d40d6a3..04ac5de6 100644 --- a/tests/TestSuite_cvl_dcf_date_path.py +++ b/tests/TestSuite_cvl_dcf_date_path.py @@ -60,7 +60,7 @@ class DcfDatePathTest(TestCase): self.pkt = Packet() def set_up(self): - self.pmd_output.start_testpmd(cores="1S/4C/1T", param='--txq=2 --rxq=2 --txd=384 --rxd=384', eal_param="-w %s,cap=dcf --file-prefix=vf" % self.used_vf_pci) + self.pmd_output.start_testpmd(cores="1S/4C/1T", param='--txq=2 --rxq=2 --txd=384 --rxd=384', prefix="vf", ports=[self.used_vf_pci], port_options={self.used_vf_pci:"cap=dcf"}) def send_packets(self, packets, tx_port, count=1): self.pkt.update_pkt(packets)