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 AA329A09FF; Thu, 24 Dec 2020 08:20:40 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 90BB8CA0E; Thu, 24 Dec 2020 08:20:39 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id BD1CAC9EE for ; Thu, 24 Dec 2020 08:20:38 +0100 (CET) IronPort-SDR: op/LICY+/EsGNa1d03DiPZiF+PRRqAfeoK6r0DKOyk/KbfHPpUDrszPAf1prvv6E2b8Osp2Ypi pb1kROrCtheg== X-IronPort-AV: E=McAfee;i="6000,8403,9844"; a="163840412" X-IronPort-AV: E=Sophos;i="5.78,444,1599548400"; d="scan'208";a="163840412" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Dec 2020 23:20:30 -0800 IronPort-SDR: 3CQkgOQsP3zbUk2I3ByG8vAr8MN9pe2UTKdHMndKKRsRo6p3DU5Ntb9zMUF45gyfP42Zuw1op/ XIHMDx4zIs5g== X-IronPort-AV: E=Sophos;i="5.78,444,1599548400"; d="scan'208";a="374286696" Received: from unknown (HELO localhost.localdomain) ([10.240.183.57]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 23 Dec 2020 23:20:27 -0800 From: Haiyang Zhao To: dts@dpdk.org Cc: Haiyang Zhao Date: Thu, 24 Dec 2020 15:14:09 +0800 Message-Id: <20201224071409.18364-1-haiyangx.zhao@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] framework/pmd_output: fix rx mode parameter may be duplicated 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" the rx mode eal param force-max-simd-bitwidth may be duplicated when it is setted both in execution.cfg and suite, fix it by passing the eal parm to create_eal_parameter. Signed-off-by: Haiyang Zhao --- framework/pmd_output.py | 1 + 1 file changed, 1 insertion(+) diff --git a/framework/pmd_output.py b/framework/pmd_output.py index f4ea6670..3418efe4 100644 --- a/framework/pmd_output.py +++ b/framework/pmd_output.py @@ -133,6 +133,7 @@ class PmdOutput(): file_prefix = tmp[-1].strip() config['prefix'] = file_prefix eal_param = re.sub(re_file_prefix, '', eal_param) + config['other_eal_param'] = eal_param config['cores'] = cores if ' -w ' not in eal_param and ' -a ' not in eal_param and ' -b ' not in eal_param \ -- 2.17.1