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 A2EC5A04C7; Wed, 16 Sep 2020 04:22:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8671E1BFBC; Wed, 16 Sep 2020 04:22:17 +0200 (CEST) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 94C601BEB2 for ; Wed, 16 Sep 2020 04:22:16 +0200 (CEST) IronPort-SDR: hAQxo+jMBo0Il7JT7lJfDu54ASBJzhj4xe9ZQScGRCk+bRIJropVAWZ7by9LKnPgyIW5kxvqcM 8fXDG0b66XAA== X-IronPort-AV: E=McAfee;i="6000,8403,9745"; a="139398887" X-IronPort-AV: E=Sophos;i="5.76,430,1592895600"; d="scan'208";a="139398887" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Sep 2020 19:22:15 -0700 IronPort-SDR: sDzWH2Ima2oZLnN27fq0B4nsHenauPv7zZguY6HGAYmLJ30pfhKhuKem/IH5MAXvcX1wRVMnt7 GQXQAz/Q7GwA== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,430,1592895600"; d="scan'208";a="319679211" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by orsmga002.jf.intel.com with ESMTP; 15 Sep 2020 19:22:14 -0700 From: lingwei To: dts@dpdk.org Cc: lingwei Date: Wed, 16 Sep 2020 10:09:19 +0000 Message-Id: <20200916100919.102160-1-weix.ling@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/l3fwd_base:support CVL100g and CVL25g NIC type 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 CVL100g and CVL25g NIC type Signed-off-by: lingwei --- tests/l3fwd_base.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/l3fwd_base.py b/tests/l3fwd_base.py index 6f7af8a..94b6834 100644 --- a/tests/l3fwd_base.py +++ b/tests/l3fwd_base.py @@ -677,7 +677,7 @@ class L3fwdBase(object): 'whitelist': self.__l3fwd_white_list if self.__l3fwd_white_list else '', 'port_mask': utils.create_mask(self.__valports), 'config': config, }) - if self.nic == "niantic": + if self.nic in ["niantic", "columbiaville_100g", "columbiaville_25g"]: command_line += " --parse-ptype" if frame_size > 1518: command_line += " --enable-jumbo --max-pkt-len %d" % frame_size -- 2.17.1